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

来源:互联网 发布:博弈矩阵怎么画 编辑:程序博客网 时间:2024/05/01 19:31

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

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

0 0