SELECT SupplierName
FROM Suppliers
WHERE EXISTS (SELECT ProductName FROM Products
WHERE Products.SupplierID = Suppliers.supplierID AND Price < 20);
I want to convert the existing clause into an IN clause of the query.
SELECT SupplierName
FROM Suppliers
WHERE EXISTS (SELECT ProductName FROM Products
WHERE Products.SupplierID = Suppliers.supplierID AND Price < 20);
I want to convert the existing clause into an IN clause of the query.
Copyright © 2021 Jogjafile Inc.
Here you go: