select
from
table
where
rownum<=10;
oracle
分页的几种常见方法
简单概括有如下4种:
minus差分页
select
from
table
where
rownum<=10
minus
select
from
table
where
rownum<=5
rownum伪列select
from
(select
rownum
tid,t
from
table
t
where
rownum<=10)
where
tid<=10
and
tid>=5
notin相反select
from
table
where
id
not
in(select
id
from
table
where
rownum<=5)
and
rownum<=5
前题是id排序的select
from
table
where
id>(select
max(id)
from
table
where
rownum<=5)
and
rownum<=5
以上就是关于Orcale查询前10行数据SQL语句怎么写 请高手帮忙全部的内容,包括:Orcale查询前10行数据SQL语句怎么写 请高手帮忙、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)