Created
January 17, 2019 08:29
-
-
Save akatgelar/3da660861cb26d63cd6579bef16c9136 to your computer and use it in GitHub Desktop.
SQL #2 Workers - Answer for https://www.testdome.com/questions/sql/workers/13562?visibility=17&skillId=17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT employees.name | |
FROM employees | |
WHERE employees.id not in | |
(SELECT managerId from employees where managerId is not null) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment