(子查询前五条数据
然后去掉前)
再Top
5
不就是
5
-
10条的记录了
orcal我不会
sql的是这样写你
应该差不多吧!
select
Top
5
*
from
Table
where
id
not
in(select
Top
5
id
from
Table)
这个是oracle的写法,如果查询的表中没有重复记录:
select a.* from 表 a where rownum<=(select max(rownum) from 表)-4
minus
select a.* from 表 a where rownum<=(select max(rownum) from 表)-10
如果查询的表中有重复记录:
select a.表字段 from
(select a.*,rownum from 表 a where rownum<=(select max(rownum) from 表)-4
minus
select a.*,rownum from 表 a where rownum<=(select max(rownum) from 表)-10) a
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)