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

前端之家收集整理的这篇文章主要介绍了Oracle 查询出来的数据取第一条前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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

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

猜你在找的Oracle相关文章