Question: 1-Design a notepad database (you register: name, surname, academic title, telephones, emails addresses 2-Describe how SQL queries work: SELECT SalesOrderID, OrderDate, soh.CustomerID FROM [Sales].[SalesOrderHeader] soh

1-Design a notepad database (you register: name, surname, academic title, telephones, emails addresses 2-Describe how SQL queries work: SELECT SalesOrderID, OrderDate, soh.CustomerID FROM [Sales].[SalesOrderHeader] soh INNER JOIN ( SELECT TOP 3 CustomerID , SUM(TotalDue) as TotalSales FROM [Sales].[SalesOrderHeader] soh GROUP BY CustomerID ORDER BY TotalSales DESC ) a on soh.CustomerID = a.CustomerID

3-Write a query to the database (use Data_2021_01_28.txt data for Platon platform): Find addresses of employees from a particular state using a subquery.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!