🫡 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 <--