You have already completed these exercises!
Do you want to take them again?
You completed the MySQL EXISTS Exercises from W3Schools.com
Share on:
Drag and drop the correct syntax to create a query that lists suppliers with products priced under 20.
SELECT SupplierName Suppliers (SELECT ProductName FROM Products WHERE Products.SupplierID = Suppliers.supplierID AND Price < 20);
WHERE
EXISTS
SELECT
FROM
GROUP BY