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.47 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `stats` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `type` varchar(16) NOT NULL,
  4. `word` varchar(256) NOT NULL,
  5. `time` int(16) NOT NULL,
  6. `tweetId` varchar(24) NOT NULL,
  7. PRIMARY KEY (`id`),
  8. KEY `id` (`id`),
  9. )
  10.  
  11. id select_type table type possible_keys key key_len ref rows Extra
  12. 1 SIMPLE tweet index NULL PRIMARY 26 NULL 2351 Using index
  13. 1 SIMPLE stats ALL NULL NULL NULL NULL 6138 Using where; Not exists
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement