Guest User

Untitled

a guest
Dec 9th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. select t.user_id,t.time_log,substring_index(t.tstring,'#',1) am_in,substring_index(substring_index(t.tstring,'#',2),'#',-1) am_out,
  2. substring_index(substring_index(t.tstring,'#',-2),'#',1) pm_in,substring_index(t.tstring,'#',-1) pm_out
  3. from
  4. (select h.user_id,h.time_log,group_concat(h.stime order by h.stime separator '#') tstring
  5. from user_hardware h
  6. group by h.user_id,h.time_log
  7. ) t;
Add Comment
Please, Sign In to add comment