码迷,mamicode.com
首页 > 数据库 > 详细

PostgreSQL 的 distinct on 的理解

时间:2017-04-20 23:19:00      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:var   href   --   pos   archive   hive   blank   integer   style   

摘录自:http://www.cnblogs.com/gaojian/archive/2012/09/05/2671381.html

对于 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)

PostgreSQL 的 distinct on 的理解

标签:var   href   --   pos   archive   hive   blank   integer   style   

原文地址:http://www.cnblogs.com/haimishasha/p/6740940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!