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_5C76.sql 189B

12345678
  1. USE EX;
  2. SELECT department_name, last_name, project_number
  3. FROM departments
  4. JOIN employees USING (department_number)
  5. LEFT JOIN projects USING (employee_id)
  6. ORDER BY department_nameuse ex;