SQL中limit的用法
程序员文章站
2024-02-19 13:45:46
...
limit子句用于限制查询结果返回的数量
格式:
select * from tableName limit i,n
# tableName:表名
# i:为查询结果的索引值(默认从0开始),当i=0时可省略i
# n:为查询结果返回的数量
# i与n之间使用英文逗号","隔开
栗子:
select * from Customer LIMIT 10;
# 检索前10行数据,显示1-10条数据
select * from Customer LIMIT 1,10;
# 检索从第2行开始,累加10条id记录,共显示id为2....11
select * from Customer limit 5,10;
# 检索从第6行开始向前加10条数据,共显示id为6,7....15
select * from Customer limit 6,10;
# 检索从第7行开始向前加10条记录,显示id为7,8...16
注意:
limit n 等价于 limit 0,n
上一篇: MySQL前缀索引导致的慢查询分析总结