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
297 B
SQL

/*16. Write a query in SQL to display the first and last name, email, salary and manager ID, for those employees whose
managers are hold the ID 120, 103 or 145.*/
SELECT first_name, last_name, email,
salary, manager_id
FROM employees
WHERE manager_id IN (120 , 103 , 145);