Answers for "Write a query that selects only the names of employees who are not managers."

0

Write a query that selects only the names of employees who are not managers.

SELECT name
FROM employees
WHERE (id NOT IN (SELECT managerId FROM employees WHERE (managerId IS NOT NULL)))
Posted by: Guest on March-27-2021

Code answers related to "Write a query that selects only the names of employees who are not managers."

Code answers related to "TypeScript"

Browse Popular Code Answers by Language