标签:mysq table 性能 查询 tab 大于 select where from
select * from table_name LIMIT 起始偏移量,数量
(1)起始偏移量为0:代表没有偏移,即从第1行开始。
(2)数量为-1:代表是无穷,即偏移量之后所有的行。
(3)LIMIT n <=> LIMIT 0,n
当起始偏移量较小时,用LIMIT性能较好。
当起始偏移量较大(大于1w)时,子查询较优。
1. select * from table_name LIMIT 10000,10;
2. select * from table_name where id>=(
select id from table_name order by id LIMIT 10000,1;
) LIMIT 10;
标签:mysq table 性能 查询 tab 大于 select where from
原文地址:http://www.cnblogs.com/shijianchuzhenzhi/p/6258918.html