Question: 1. Write a query using the Suppliers and Products tables that will return the SupplierName and ProductName fields where the Suppliers table has related records
1. Write a query using the Suppliers and Products tables that will return the SupplierName and ProductName fields where the Suppliers table has related records in the Products table. Hint: Join the tables on the SupplierID field. 2. Write a query using the Suppliers and Products tables that will return the SupplierName and ProductName fields where the Suppliers table has related records in the Products table and the SupplierID is equal to 15. Hint: Join the tables on the SupplierID field. 3. Write a query using the Categories and Products tables that will return the CategoryName and ProductName fields where the Categories table has related records in the Products table. Sort the records by CategoryName and ProductName. Hint: Join the tables on the CategoryID field. 4. Write a query using the Categories and Products tables that will return the CategoryName and ProductName fields where the Categories table has related records in the Products table and the Price is greater than $40.00. Sort the records by CategoryName and ProductName. Hint: Join the tables on the CategoryID field. 5. Write a query using the Categories and Products tables that will return the CategoryName and ProductName fields where the Categories table has related records in the Products table and the value in the CategoryName field must start with the letter C and the rest of the characters can be anything. Sort the records by CategoryName and ProductName. Hint: Join the tables on the CategoryID field Use JOINS Please
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
