5 lines
290 B
MySQL
5 lines
290 B
MySQL
|
/*18. Write a query in SQL to display department name and the full name (first and last name) of the manager.*/
|
||
|
SELECT department_name, first_name || ' ' || last_name AS name_of_manager
|
||
|
FROM departments D
|
||
|
JOIN employees E
|
||
|
ON (D.manager_id=E.employee_id);
|