oracle分页基本语法

–分页:
–mysql: limit
–oracle:rownum伪列
–伪列:在表结构中不存在的列
–rowid伪列:用于唯一标识一行记录
–rownum伪列:行号

select * from emp;–看不到行号
–select *,rownum from emp;–报错

select e.*,rownum from emp e;–正确的

–rownum:行号是从1开始的,也就是有了1才会有2
select e.*,rownum from emp e where rownum=2;–获取不到数据

–分页
–每页显示2条,显示第2页的数据
–pageIndex:第几页(当前页码)
–pageSize:每页显示的记录数
–startRow:(pageIndex-1)*pageSize==>(2-1)2==>2
–endRow:pageIndex*pageSize==>2*2=4
–select * from emp where rownum>startRow and rownum<=endRow
/*
select * from(
select e.*,rownum from emp e where rownum<=endRow
)tmp
where tmp.rownum>startRow
*/
select e.*,rownum from emp e;
select * from (
select e.*,rownum rn from emp e where rownum<=4
) tmp
where tmp.rn>2;

你可能感兴趣的:(数据库)