oracle怎么查询一个表中的最后10条数据?
select * from (select a.*,rownum sn from emp a) where sn>=(select count(*) from emp)-10; 将emp表替代成你自己的表即可.