Answers for "Any, All in sql"

SQL
0

any all sql

SELECT ProductName
FROM Products
WHERE ProductID = ALL
  (SELECT ProductID
  FROM OrderDetails
  WHERE Quantity = 10);
Posted by: Guest on September-15-2021
0

any all sql

SELECT ProductName
FROM Products
WHERE ProductID = ANY
  (SELECT ProductID
  FROM OrderDetails
  WHERE Quantity = 10);
Posted by: Guest on September-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language