mysql查询语句通过limit来限制查询的行数
时间:2021-06-07 08:55:22|栏目:Mysql|点击: 次
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条
例如:
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条
上一篇:MySQL提示:The server quit without updating PID file问题的解决办法
栏 目:Mysql
本文地址:http://www.codeinn.net/misctech/137233.html