Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. mysql> SELECT firstname, lastname, birthday
  2. -> FROM wizard
  3. -> WHERE birthday <= ALL(SELECT birthday FROM wizard);
  4. +-----------+------------+------------+
  5. | firstname | lastname | birthday |
  6. +-----------+------------+------------+
  7. | albus | dumbledore | 1881-07-01 |
  8. +-----------+------------+------------+
  9. 1 row in set (0.01 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement