首页 > 代码库 > mysql 分页查询

mysql 分页查询

mysql无top语法,用limit实现:

select * from lime_document 
order by id
limit 0,5

这里要注意的地方:limit m,n 中,运行结果是从(m+1)开始,返回n条记录

本文出自 “phoenixIsland” 博客,请务必保留此出处http://phoenix2012.blog.51cto.com/1799358/1569480

mysql 分页查询