欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql查询语句通过limit来限制查询的行数

程序员文章站 2024-02-26 13:06:10
mysql查询语句,通过limit来限制查询的行数。 例如: select name from usertb where age > 20 limit 0, 1; /...
mysql查询语句,通过limit来限制查询的行数。

例如:

select name from usertb where age > 20 limit 0, 1; //限制从第一条开始,显示1条

select name from usertb where age > 20 limit 1; //同上面的一个效果

select name from usertb where age > 20 limit 4, 1; //显示从第五条开始,显示1条