Orcale查询前10行数据SQL语句怎么写? 请高手帮忙
简单概括有如下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 ...