Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.12 KB

066_pharmacy_analytics_part_3.md

File metadata and controls

45 lines (30 loc) · 1.12 KB

SQL Everyday #066

Pharmacy Analytics (Part 3)

Site: DataLemur
Difficulty per Site: Easy

Problem

CVS Health wants to gain a clearer understanding of its pharmacy sales and the performance of various products.

Write a query to calculate the total drug sales for each manufacturer. Round the answer to the nearest million and report your results in descending order of total sales. In case of any duplicates, sort them alphabetically by the manufacturer name.

Since this data will be displayed on a dashboard viewed by business stakeholders, please format your results as follows: "$36 million". [Full Description]

Submitted Solution

-- Submitted Solution
SELECT 
  manufacturer
  ,CONCAT('$', ROUND(SUM(total_sales) / 1000000, 0), ' million') AS sales_mil
FROM pharmacy_sales
GROUP BY manufacturer
ORDER BY SUM(total_sales) DESC, manufacturer ASC
; 

Site Solution

-- DataLemur Solution 
-- Site solution is essentially the same.

Notes

TODO

NB

TBD

Go to Index
Go to Overview