Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 922 Bytes

060_pharmacy_analytics_part_1.md

File metadata and controls

43 lines (29 loc) · 922 Bytes

SQL Everyday #060

Pharmacy Analytics (Part 1)

Site: DataLemur
Difficulty per Site: Easy

Problem

CVS Health is trying to better understand its pharmacy sales, and how well different products are selling. Each drug can only be produced by one manufacturer.

Write a query to find the top 3 most profitable drugs sold, and how much profit they made. Assume that there are no ties in the profits. Display the result from the highest to the lowest total profit. [Full Description]

Submitted Solution

-- Submitted Solution
SELECT
  drug
  ,total_sales - cogs AS total_profit
FROM pharmacy_sales
ORDER BY total_profit DESC
LIMIT 3
;

Site Solution

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

Notes

TODO

NB

TBD

Go to Index
Go to Overview