mysql中limit的用法深入分析_mysql数据库教程-查字典教程网
mysql中limit的用法深入分析
mysql中limit的用法深入分析
发布时间:2016-12-29 来源:查字典编辑
摘要:select*fromtablelimitm,n其中m是指记录开始的index,从0开始,n是指从第m条开始,取n条。复制代码代码如下:my...

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)

大致就是这么个意思。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新mysql数据库学习
    热门mysql数据库学习
    编程开发子分类