Guest User

Untitled

a guest
Jan 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. -- Write only the SQL statement that solves the problem and nothing else.
  2.  
  3. SELECT name FROM employees AS e1 WHERE id NOT IN
  4. (
  5. SELECT managerId FROM employees AS e2 WHERE e1.id = e2.managerId
  6. );
Add Comment
Please, Sign In to add comment