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.

6 lines
363 B
SQL

/*22. Write a query in SQL to display the department name, full name (first and last name) of manager, and their city.*/
SELECT department_name, first_name || ' ' || last_name AS name_of_manager, city
FROM departments D
JOIN employees E
ON (D.manager_id=E.employee_id)
JOIN locations L USING (location_id);