Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. SELECT DISTINCT name, birthday,address
  2. FROM driver INNER JOIN event_list ON driver.d_id=event_list.d_id
  3. GROUP BY name, birthday,address
  4. HAVING MIN(birthday) AND driver.address='haifa';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement