mysql查询语句通过limit来限制查询的行数
更新时间:2014年02月08日 15:23:41 作者:
这篇文章主要介绍了mysql查询语句,通过limit来限制查询的行数,需要的朋友可以参考下
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 5.0.96 for Windows x86 32位绿色精简版安装教程
这篇文章主要介绍了MySQL 5.0.96 for Windows x86 32位绿色精简版安装教程,需要的朋友可以参考下2017-10-10安装MySQL后include目录下没有找到libmysql.lib
安装了MySQL后,在其安装目录下的include文件夹并没有找到libmysql.lib,主要原因是在安装MySQL的时候,没有勾选develop component这一选项造成的2014-08-08
最新评论