SQL - Advanced Joins
Given tables
employees and departments with columns employees.dept_id and departments.id, what will this query return?SELECT e.name, d.name FROM employees e LEFT JOIN departments d ON e.dept_id = d.id WHERE d.name IS NULL;
