A.
Comparing the sum of order amount for different countries
SELECT country, SUM ([order amount]) AS total_amount
FROM tbl_sales
GROUP BY country
B. Calculating the sum of order amount for each salesperson, and sorting the results from largest to smallest
sales
SELECT Salesperson, SUM ([order amount]) AS total_amount
FROM tbl_sales
GROUP BY Salesperson
ORDER BY total_amount DESC
C. Finding the five salespersons with the top five sales order amount
SELECT TOP (5) Salesperson, SUM([Order Amount]) AS total_amount
FROM tbl_sales
GROUP BY Salesperson
ORDER BY total_amount DESC
D. Finding the three salespersons with the bottom three sales order amount
SELECT TOP (3) Salesperson, SUM([Order Amount]) AS total_amount
FROM tbl_sales
GROUP BY Salesperson
ORDER BY total_amount ASC
E. Showing the total order amount for each salesperson, and calculating summarized order amounts as a
percentage of the grand total
SELECT Salesperson, SUM([Order Amount]) AS total_amount,
SUM ([Order Amount])/(SELECT SUM([Order Amount]) FROM tbl_sales)*100
FROM tbl_sales
GROUP BY Salesperson