如何选择仅按一列分组的多列

时间:2019-01-24 12:50:29

标签: sql postgresql

我想根据max(created_at)按class_ no检索emp细节表分组的所有数据。另外,我也不想按数据与其他任何列进行分组,因为它会更改最终结果。 此外,是否有任何解决方案甚至不使用group by子句也可以检索相同的结果

create table emp
(
   emp_id serial primary key,
   emp_no integer,
   emp_ref_no character varying(15),
   emp_class character varying(15),
   created_at timestamp,
   created_by character varying(20)
);

create table emp_detail
(
   emp_detail_id serial primary key,
   emp_id integer,
   class_no integer,
   col1 JSONB,
   col2 JSONB,
   col3 JSONB,
   created_at timestamp without time zone default now(),
   created_by character varying(20),
   constraint con_fk foreign key(emp_id) references emp(emp_id)
 );

INSERT INTO emp(
            emp_no, emp_ref_no, emp_class, created_by)
    VALUES ('548251', '2QcW', 'abc', 'Nik');

INSERT INTO emp_detail(
            emp_id, class_no, created_at, 
            created_by)
    VALUES ( 1, 1, '2018-05-04 11:00:00', 
            'Nik'); 

INSERT INTO emp_detail(
            emp_id, class_no, created_at, 
            created_by)
    VALUES ( 1, 1, '2018-04-04 11:00:00', 
            'Nik'); 

INSERT INTO emp_detail(
            emp_id, class_no, created_at, 
            created_by)
    VALUES ( 1, 2, '2018-05-10 11:00:00', 
            'Nik');

INSERT INTO emp_detail(
            emp_id, class_no, created_at, 
            created_by)
    VALUES ( 1, 2, '2018-02-01 11:00:00', 
            'Nik');

1 个答案:

答案 0 :(得分:4)

我认为您想要distinct on

select distinct on (ed.class_no) ed.*
from emp_detail ed
order by ed.class_no, created_at desc;

distinct on是非常方便的Postgres扩展名。这可能是最快的方法,尤其是在emp_detail(class_no, created_at desc)上使用索引的情况下。

其他选择是带有row_number()的子查询或相关的子查询。