Loading lesson path
Concept visual
Start at both ends
❮ SQL Keywords
command returns true if all of the subquery values meet the condition. The following SQL statement returns TRUE and lists the productnames if ALL
Formula
the records in the OrderDetails table has quantity = 10:WHERE ProductID = ALL (SELECT ProductID FROM OrderDetails WHERE Quantity = 10);❮ SQL Keywords