Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. select * from wizard where birthday between '1975-01-01' and '1985-12-31' and is_muggle='0';
  2.  
  3. select * from wizard where firstname like 'H%';
  4.  
  5. select firstname, lastname from wizard where lastname='Potter' order by firstname;
  6.  
  7. select firstname, lastname, birthday from wizard order by birthday asc limit 0,1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement