SQL Server CE 通配符

发布于 2024-12-12 04:49:32 字数 478 浏览 0 评论 0原文

我的数据库有一个products 表。其中包含一个名为layers 的列。该列包含 0102 形式的数据,其中 01 是储藏室,02 是该储藏室中的层。

我还需要查询数据库中的壁橱(不仅仅是层)。如何使用通配符,以便查询壁橱 010203 等中的所有产品?

这就是我现在所拥有的,但它不起作用:(

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

零崎曲识 2024-12-19 04:49:33

SQL Server T-SQL 使用 % 作为“任何字符”的通配符_ 表示一个字符、任何字符 - 相当于 Windows/DOS 中的 ?)、任何数字其中”——并且您还需要将字符串文字放入单引号中 - 所以使用:

SELECT Artikelnummer, Omschrijving, Legger, Voorraad 
FROM Artikels 
WHERE Legger LIKE '01%' OR  Legger LIKE '02%' OR  Legger LIKE '03%'
ORDER BY Artikelnummer

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:

SELECT Artikelnummer, Omschrijving, Legger, Voorraad 
FROM Artikels 
WHERE Legger LIKE '01%' OR  Legger LIKE '02%' OR  Legger LIKE '03%'
ORDER BY Artikelnummer
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文