mysql中limit的用法深入分析_MySQL
select * from table limit m,n其中m是指记录开始的index,从0开始,n是指从第m条开始,取n条。
mysql(root@localhost:test)>select * from total;
+----+-----------------+--------+------------+
| id | name | number | mydate |
+----+-----------------+--------+------------+
| 1 | 河南出版社 | 1000 | 2008-03-24 |
| 2 | 河南出版社 | 1200 | 2009-04-24 |
| 3 | 河南出版社 | 1100 | 2010-04-24 |
| 4 | 河南出版社 | 1400 | 2011-04-24 |
| 5 | 河南出版社 | 1350 | 2012-04-24 |
| 6 | 北京出版社 | 2000 | 2008-03-24 |
| 7 | 北京出版社 | 2020 | 2009-04-24 |
| 8 | 北京出版社 | 2050 | 2010-04-24 |
| 9 | 北京出版社 | 1980 | 2011-04-24 |
| 10 | 北京出版社 | 2100 | 2012-04-24 |
+----+-----------------+--------+------------+
10 rows in set (0.00 sec)
mysql(root@localhost:test)>select * from total limit 2,3;
+----+-----------------+--------+------------+
| id | name | number | mydate |
+----+-----------------+--------+------------+
| 3 | 河南出版社 | 1100 | 2010-04-24 |
| 4 | 河南出版社 | 1400 | 2011-04-24 |
| 5 | 河南出版社 | 1350 | 2012-04-24 |
+----+-----------------+--------+------------+
3 rows in set (0.00 sec)
大致就是这么个意思。
上一篇: MyGWT去,Ext GWT来
推荐阅读
-
Mysql5.7中使用group concat函数数据被截断的问题完美解决方法
-
Windows 64 位 mysql 5.7以上版本包解压中没有data目录和my-default.ini及服务无法启动的快速解决办法(问题小结)
-
浅谈SQLServer的ISNULL函数与Mysql的IFNULL函数用法详解
-
mysql 终结点映射器中没有更多的终结点可用的解决方法
-
在Python程序中操作MySQL的基本方法
-
MYSQL数据库中的现有表增加新字段(列)
-
Mysql中返回一个数据库的所有表名,列名数据类型备注
-
MySQL show命令的用法
-
Mysql中的索引精讲
-
浅谈Mysql中类似于nvl()函数的ifnull()函数