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.

exer_5C16.sql 172B

123456
  1. USE ex;
  2. SELECT department_name, last_name, project_number
  3. FROM departments
  4. NATURAL JOIN employees
  5. LEFT JOIN projects USING (employee_id)
  6. ORDER BY department_name ASC;