Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. mysql> EXPLAIN SELECT COUNT(*) FROM Bookinfo;
  2. +----+-------------+----------+------------+-------+---------------+--------+---------+------+---------+----------+-------------+
  3. | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
  4. +----+-------------+----------+------------+-------+---------------+--------+---------+------+---------+----------+-------------+
  5. | 1 | SIMPLE | Bookinfo | NULL | index | NULL | ISBN13 | 41 | NULL | 1093622 | 100.00 | Using index |
  6. +----+-------------+----------+------------+-------+---------------+--------+---------+------+---------+----------+-------------+
  7. 1 row in set, 1 warning (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement