mysql 中的LIMIT用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 中的LIMIT用法相关的知识,希望对你有一定的参考价值。
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;
以上是关于mysql 中的LIMIT用法的主要内容,如果未能解决你的问题,请参考以下文章