Re: order by primary key slowly
Posted by:
varky chan
Date: April 06, 2016 08:11PM
mysql> explain select id from user limit 1000000,10;
+----+-------------+-------+-------+---------------+-----------------+---------+------+---------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------+-------+---------------+-----------------+---------+------+---------+-------------+
| 1 | SIMPLE | user | index | NULL | invite_user_idx | 5 | NULL | 5465723 | Using index |
+----+-------------+-------+-------+---------------+-----------------+---------+------+---------+-------------+
1 row in set (0.51 sec)
mysql> explain select id from user order by id limit 1000000,10;
+----+-------------+-------+-------+---------------+---------+---------+------+---------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------+-------+---------------+---------+---------+------+---------+-------------+
| 1 | SIMPLE | user | index | NULL | PRIMARY | 4 | NULL | 1000010 | Using index |
+----+-------------+-------+-------+---------------+---------+---------+------+---------+-------------+
1 row in set (0.00 sec)
Actually, the table have another filed named invite_user_id with int type, and a index named invite_user_idx for it.
Subject
Views
Written By
Posted
2811
April 05, 2016 10:42PM
1251
April 06, 2016 04:35AM
1215
April 06, 2016 10:15AM
1248
April 06, 2016 11:23AM
Re: order by primary key slowly
1349
April 06, 2016 08:11PM
1282
April 06, 2016 10:35PM
1259
April 07, 2016 12:34AM
3672
April 07, 2016 07:21AM
1322
April 07, 2016 10:20AM
1227
April 07, 2016 11:26PM
1335
April 12, 2016 07:42PM
1187
April 06, 2016 08:57AM
1219
April 06, 2016 10:17AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.