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

来源:互联网 发布:有什么好的护肤品知乎 编辑:程序博客网 时间:2024/05/01 13:42

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

---------------------------------------------------------------------------

转载自:http://www.itpub.net/thread-246442-1-1.html

 

select * from (select * from <table> order by <key>) where rownum=1;

select * from (select * from <table> order by <key> desc) where rownum=1;