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

5 lines
280 B
SQL

/*6. Write a query in SQL to display all departments including those where does not have any employee.*/
SELECT E.first_name, E.last_name, E.department_id, D.department_name
FROM employees E
RIGHT OUTER JOIN departments D
ON E.department_id = D.department_id;