You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exec_5C74.sql 232B

12345678
  1. use ex;
  2. SELECT department_name, last_name, project_number
  3. FROM departments d JOIN employees e
  4. ON d.department_number = e.department_number
  5. LEFT JOIN projects p
  6. ON e.employee_id = p.employee_id
  7. ORDER BY department_name, last_name