Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. mysql> explain select * from cc_call where starttime > '2016-11-14 10:19:48' and starttime < '2016-11-30 23:59:59' limit 2;
  2. +------+-------------+---------+-------+---------------+-----------+---------+------+---------+-----------------------+
  3. | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
  4. +------+-------------+---------+-------+---------------+-----------+---------+------+---------+-----------------------+
  5. | 1 | SIMPLE | cc_call | range | starttime | starttime | 4 | NULL | 2025490 | Using index condition |
  6. +------+-------------+---------+-------+---------------+-----------+---------+------+---------+-----------------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement