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
3510
April 05, 2016 10:42PM
1511
April 06, 2016 10:15AM
1487
April 06, 2016 11:23AM
Re: order by primary key slowly
1602
April 06, 2016 08:11PM
1578
April 06, 2016 10:35PM
1497
April 07, 2016 12:34AM
1585
April 07, 2016 10:20AM
1506
April 07, 2016 11:26PM
1582
April 12, 2016 07:42PM
1435
April 06, 2016 08:57AM
1468
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.