数据库的分页语句

Posted 我有我的特色

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库的分页语句相关的知识,希望对你有一定的参考价值。

一、mysql 数据库的分页语句

select *from 表名 where 主键名 limit 当前页数-1,每页显示条数;

例如
select *from user_register where id limit 15,5;

 

 

二、 SQL Server 2000/2005数据库的分页语句

SELECT TOP 每页大小 *
FROM 表名
WHERE id NOT IN
(
SELECT TOP 每页大小*(当前页数-1) FROM 表名
)

 

三、oracle 数据库分页

--分页查询一
select * from (
select a1.*,rownum rn
from (select * from student) a1
where rownum <=5) where rn>=2;

--分页查询二
select a1.* from
(select student.*,rownum rn
from student
where rownum <=5) a1 where rn >=3;

--分页查询三
select a1.* from (
select student.*,rownum rn
from student) a1
where rn between 3 and 5;

 

以上是关于数据库的分页语句的主要内容,如果未能解决你的问题,请参考以下文章

在oracle数据库中的分页SQL语句怎么写?

各种数据库的分页查询语句

各种数据库的分页查询语句

各种数据库的分页查询语句

Mybatis分页-利用Mybatis Generator插件生成基于数据库方言的分页语句,统计记录总数 (转)

oracle分页查询语句怎么写每页查询10条