SQL Server CE 通配符
我的数据库有一个products
表。其中包含一个名为layers
的列。该列包含 0102
形式的数据,其中 01
是储藏室,02
是该储藏室中的层。
我还需要查询数据库中的壁橱(不仅仅是层)。如何使用通配符,以便查询壁橱 01
、02
和 03
等中的所有产品?
这就是我现在所拥有的,但它不起作用:(
SELECT Artikelnummer, Omschrijving, Legger, Voorraad
FROM Artikels
WHERE Legger LIKE 01* OR Legger LIKE 02* OR Legger LIKE 03*
ORDER BY Artikelnummer
对不起荷兰名字)
My database has a products
table. This contains a column called layers
. That column contains data in the form of 0102
, where 01
is the closet and 02
is the layer in that closet.
I need to query my database for closets as well (not only layers). How do I use wildcards, so that I can query for all products in - for example - closet 01
, 02
and 03
?
This is what I have now, but it isn't working:
SELECT Artikelnummer, Omschrijving, Legger, Voorraad
FROM Artikels
WHERE Legger LIKE 01* OR Legger LIKE 02* OR Legger LIKE 03*
ORDER BY Artikelnummer
(Sorry for the dutch names)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL Server T-SQL 使用
%
作为“任何字符”的通配符(_
表示一个字符、任何字符 - 相当于 Windows/DOS 中的?
)、任何数字其中”——并且您还需要将字符串文字放入单引号中 - 所以使用:SQL Server T-SQL uses the
%
as the wildcard for "any characters (and_
for one character, any character - equivalent to?
in Windows/DOS), any numbre thereof" - and you also need to put your string literals into single quotes - so use: