PostgreSQL 的 distinct on 的理解


對於 select distinct on , 可以利用下面的例子來理解:

create table a6(id integer, name varchar(10));

insert into a6 values(1, ' 001');

insert into a6 values(1, '002');

insert into a6 values(2, '003');

insert into a6 values(2, '004');

select distinct on (id) id, name from a6;

id | name
---+--------
1 | 001
2 | 003
(2 rows)

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM