Question
Design the query to do the following. Save the queries as 1a, 1b, 1c, Note that you may need to modify the SQL view for
Design the query to do the following. Save the queries as 1a, 1b, 1c, Note that you may need to modify the SQL view for some of these queries. a. List the ID, first name and last name of employees who earn more salary than their supervisor and the amount by which the employees salary is higher. b. Enable the user to enter the name of a product and list the ID and product names of products having a different Quantity Per Unit from that of the product entered. c. Enable the user to enter the first name and last name of an employee and list the ID, first name, last name and hire date of all employees hired within one year after the employee entered was hired. For example, if the name entered was hired on March 20, 2020, all employees hired from then up until March 20, 2021 must be listed. d. List all Customer IDs, the Order ID of the orders they have submitted if any, and the employee ID that handled the order. All employees (including those who have never handled an order) and all customer IDs (including those who have never submitted an order) must also be listed. The list must be ordered in ascending order of the employeeID, and then in ascending order of the orderID (if the employee is listed more than once). A sample of the expected result from a different data set is provided below: Customer ID ABCD has never submitted an order and employee ID 55 and employee ID 4 have never handled an order. CustomerID OrderID EmployeeID ABCD DCBA 11231 1 DCBA 10101 2 EBAC 11123 2 4 552 e. List each product name, the number of units in stock for the product and the total number of products that has same units in stock as the product. The list must be in ascending order of the units in stock values and then in ascending order of the product name (if more than one product has the same units in stock). A sample of the expected result is provided below. Product Name Units In Stock Products with Similar UnitsInStock Alice Mutton 0 5 Chef Anton's Gumbo Mix 0 5 Gorgonzola Telino 0 5 Perth Pasties 0 5 Thringer Rostbratwurst 0 5 Sir Rodney's Scones 3 1 Longlife Tofu 4 2 Louisiana Hot Spiced Okra 4 2 Rgede sild 5 1 Northwoods Cranberry Sauce 6 2 Scottish Longbreads 6 2 . f. List the names of products and the total number of times the product has been ordered by customers in a specific country. The name of the country must be provided by the user and the products with the highest quantity sold in that country must be listed first.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started