oracle 查询数据只要排序后的第一条记录(不用rownum=1),sql语句怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 查询数据只要排序后的第一条记录(不用rownum=1),sql语句怎么写相关的知识,希望对你有一定的参考价值。
参考技术A1、创建测试表,
create table test_order(id number, value varchar2(50));
2、插入测试数据
insert into test_order values(3,'v3');
insert into test_order values(2,'v2');
insert into test_order values(1,'v1');
insert into test_order values(5,'v5');
insert into test_order values(4,'v4');
commit;
3、查询表中全量数据,可以发现数据并未排序,select t.*, rowid from test_order t;
4、编写sql,数据只要排序后的第一条记录(不用rownum=1) select * from (select t.*, row_number() over(order by id) rn from test_order t) t where rn = 1;
Oracle取查询结果数据的第一条记录SQL
Oracle取查询结果数据的第一条记录SQL:
select * from (select * from <table> order by <key>) where rownum=1; select * from (select * from <table> order by <key> desc) where rownum=1;
以上是关于oracle 查询数据只要排序后的第一条记录(不用rownum=1),sql语句怎么写的主要内容,如果未能解决你的问题,请参考以下文章