SQL ALL 关键字
ALL
如果所有子查询值都满足条件,则 ALL
命令返回 true。
以下 SQL 语句返回 TRUE 并列出产品名称,如果 OrderDetails 表中的所有记录数量都为 10。
例子
SELECT ProductName
FROM Products
WHERE ProductID = ALL (SELECT ProductID FROM OrderDetails WHERE Quantity = 10);
自己试试 »
如果所有子查询值都满足条件,则 ALL
命令返回 true。
以下 SQL 语句返回 TRUE 并列出产品名称,如果 OrderDetails 表中的所有记录数量都为 10。
SELECT ProductName
FROM Products
WHERE ProductID = ALL (SELECT ProductID FROM OrderDetails WHERE Quantity = 10);
自己试试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]