Querying an unknown database to extract useful data
For this session, it will be necessary to train with DBeaver, as it will be the tool used during the exam
Download this script Northwind database
SELECT * FROM categories c
-- 1. list of customers
-- 2. number of different products?
-- 3. count of employees
-- 4. total overall revenue
-- 5. total revenue for one specific year
-- 6. list of countries covered by delivery
-- 7. list of available transporters
-- 8. number of customer per countries
-- 9. number of orders which are "ordered" but not shipped
-- 10. all the orders from france and belgium
-- 11. most expensive products
-- 12. list of discontinued products
-- 13. count of product per category
-- 14. average order price
-- 15. revenue per category
-- 16. number of orders per shipper
-- 17. number of orders per employee
-- 18. total revenue per supplier
-- 19. insert a product with its category
-- 20. create an order (what is required?)
-- 21. change the shipped delivery date