Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. SELECT COUNT(DISTINCT `tweet`.id_str) FROM `tweet`
  2. `tweet` LEFT JOIN stats ON id_str = stats.tweetId WHERE stats.tweetId IS
  3. NULL
  4.  
  5. EXPLAINED
  6. id select_type table type possible_keys key key_len ref rows Extra
  7. 1 SIMPLE tweet index NULL PRIMARY 26 NULL 2351 Using index
  8. 1 SIMPLE stats ALL NULL NULL NULL NULL 6138 Using where; Not exists
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement