Guest User

Untitled

a guest
Dec 19th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. id name s_time f_time
  2. 01 abc 10.15 10.45
  3. 02 abc 11.05 11.55
  4. 03 abc 12.18 13.46
  5. 04 abc 15.12 16.53
  6. 05 def 10.01 12.58
  7. 06 def 14.06 16.51
  8. 07 def 17.43 18.54
  9. 08 xyz 09.45 12.36
  10. 09 xyz 14.51 15.57
  11. 10 xyz 16.23 18.01
  12.  
  13. name f_time
  14. abc 16.53
  15. def 18.54
  16. xyz 18.01
  17.  
  18. select name,f_time from sessions where name in ('abc','def','xyz') order by id DESC LIMIT 1;
Add Comment
Please, Sign In to add comment