Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 535 Bytes

Workshop3.md

File metadata and controls

27 lines (19 loc) · 535 Bytes

🫡 Workshop3

Northwind database queries:

  • How many units of which product have been sold in the Northwind database?
SQL query
SELECT p.product_name AS name, count(p.product_name) AS amount
FROM products p INNER JOIN order_details od
ON p.product_id = od.product_id
GROUP BY p.product_name
ORDER BY p.product_name
Output workshop3

<--