Guest User

Untitled

a guest
Jun 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. SELECT t2 . *
  2. FROM t2
  3. LEFT JOIN t2 AS tt2 ON tt2.acct = t2.acct
  4. WHERE t2.create_date < tt2.create_date
  5.  
  6. acct create_date
  7. 1 2012-01-20 03:12:34
  8. 1 2012-01-20 03:12:34
  9. 1 2012-02-04 13:34:45
  10. 2 2012-01-09 12:42:56
Add Comment
Please, Sign In to add comment