Guest User

Untitled

a guest
Mar 13th, 2018
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. +----+----------
  2. | id | name
  3. +----+----------
  4. | 1 | Boggs
  5. | 2 | Mattingly
  6. | 3 | Judge
  7. | 4 | Martinez
  8. | 5 | Rodriguez
  9.  
  10. +----+----------+-----------+
  11. | id | player_id | position
  12. +----+----------+-----------+
  13. | 1 | 1 | Pitcher
  14. | 2 | 1 | Third Base
  15. | 3 | 2 | First Base
  16. | 4 | 3 | Second Base
  17. | 5 | 3 | Pitcher
  18.  
  19. select id from Player where id not in (select player_id from Position)
Add Comment
Please, Sign In to add comment