Guest User

Untitled

a guest
Dec 11th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. select count(*) from call_log
  2. where relation_id in (14,15)
  3. and date(from_unixtime(created_time/1000)) = '2018-12-10';
  4.  
  5. select count(*) from call_log
  6. where relation_id in (14,15)
  7. and date(from_unixtime(created_time/1000)) = '2018-12-10'
  8. and id not in (NULL);
  9.  
  10. select count(*) from call_log
  11. where relation_id in (14,15)
  12. and date(from_unixtime(created_time/1000)) = '2018-12-10'
  13. and id in (NULL);
Add Comment
Please, Sign In to add comment