where rownum<(select count(*)+1 from table)
minus
select * from table
where rownum<(select count(*) from table)
也可以简化为
select * from table
minus
select * from table
where rownum<(select count(*) from table)
效果是一样的
切记rownum是伪列 只能用<
dl_会飞的青蛙的答案是错误的,他给出的是降序排列后的第一条,仅在排序过的时候是正确的。如果这个表是不排序的呢?他的答案就是错的
顺便给你求第X行的通用SQL语句
select * from table where rownum<X+1
minus
select * from table where rownum<X
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)