programming-examples/sql/JoinHRDatabase/2. Write a query in SQL to display the first and last name, department, city, and state province for each employee.sql

8 lines
389 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*2. Write a query in SQL to display the first and last name, department, city, and state province for each employee. */
SELECT E.first_name,E.last_name,
D.department_name, L.city, L.state_province
FROM employees E
JOIN departments D
ON E.department_id = D.department_id
JOIN locations L
ON D.location_id = L.location_id;