11 lines
380 B
MySQL
11 lines
380 B
MySQL
|
/*Write a query in SQL to display the first and last name, and department code for all employees who work in the department
|
||
|
Marketing.
|
||
|
|
||
|
*/
|
||
|
|
||
|
SELECT first_name, last_name, department_id
|
||
|
FROM employees
|
||
|
WHERE department_id =
|
||
|
(SELECT department_id
|
||
|
FROM departments
|
||
|
WHERE department_name = 'Marketing');
|