当前位置: 数据库>mysql
mysql查询语句通过limit来限制查询的行数
来源: 互联网 发布时间:2014-10-13
本文导语: 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; //显示从...
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条
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。