Mysql独有的分页方法

--1.最经常使用的分页 select  *  from  content  order  by  id  desc  limit 0, 10;   --limit是MySQL中特有的分页语法,用法以下: --举例: select  *  from  tableName limit 5;  --返回前5行 select  *  from  tableName limit 0,5;  --同上,返回
相关文章
相关标签/搜索