Oracle 查询出来的数据取第一条


select * from (select * from

order by desc) where rownum=1;

select * from (select * from

order by ) where rownum=1;

SQL