MySQL Forums
Forum List  »  Performance

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.

Options: ReplyQuote


Subject
Views
Written By
Posted
2830
April 05, 2016 10:42PM
1223
April 06, 2016 10:15AM
1257
April 06, 2016 11:23AM
Re: order by primary key slowly
1358
April 06, 2016 08:11PM
1290
April 06, 2016 10:35PM
1267
April 07, 2016 12:34AM
1332
April 07, 2016 10:20AM
1235
April 07, 2016 11:26PM
1344
April 12, 2016 07:42PM
1195
April 06, 2016 08:57AM
1229
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.