Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 480 Bytes

Workshop2.md

File metadata and controls

25 lines (17 loc) · 480 Bytes

🫡 Workshop2

Northwind database queries:

  • Are there any employees in the Northwind database who have not made any sales? If so, who are they?
SQL query
SELECT * FROM employees e LEFT JOIN orders o
ON e.employee_id = o.employee_id
WHERE o.employee_id IS NULL
Output workshop2

<--