Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. select count(*) from emails
  2. where id <= 0
  3. group by emails.id
  4.  
  5. sqlite> select count(*) from emails where id <= 0;
  6. 0
  7. sqlite> select count(*) from emails where id <= 0 group by emails.id;
  8. sqlite>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement