以下の内容はhttps://htn20190109.hatenablog.com/entry/2024/10/07/194554より取得しました。


グループ内の結果セットを単一列に連結する

 

(8.4.0)

drop table tab1;
create table tab1(
 col1  int,
 col2 int,
 col3 varchar(10)
);

 

insert into tab1 values (1, 10, 'A');
insert into tab1 values (1, 20, 'B');
insert into tab1 values (2, 10, 'C');
insert into tab1 values (2, 20, 'D');
insert into tab1 values (2, 30, 'E');
insert into tab1 values (3, 10, 'F');

select * from tab1;

select col1, group_concat(col3 order by col2 separator ',' ) 
from tab1
group by col1
order by col1
;

 

(23c)

drop table tab1 purge;
create table tab1(
 col1  int,
 col2 int,
 col3 varchar2(10)
);


insert into tab1 values (1, 10, 'A');
insert into tab1 values (1, 20, 'B');
insert into tab1 values (2, 10, 'C');
insert into tab1 values (2, 20, 'D');
insert into tab1 values (2, 30, 'E');
insert into tab1 values (3, 10, 'F');

commit;

select * from tab1;

select col1, listagg(col3, ',') within group (order by col2) 
from tab1
group by col1
order by col1
;

 

 

(17)

drop table tab1;
create table tab1(
 col1  int,
 col2 int,
 col3 varchar(10)
);


insert into tab1 values (1, 10, 'A');
insert into tab1 values (1, 20, 'B');
insert into tab1 values (2, 10, 'C');
insert into tab1 values (2, 20, 'D');
insert into tab1 values (2, 30, 'E');
insert into tab1 values (3, 10, 'F');

select * from tab1;


select col1, array_to_string(array_agg(col3 order by col2), ',') 
from tab1 
group by col1
order by col1
;

 

(2022)

drop table tab1;
create table tab1(
 col1  int,
 col2 int,
 col3 varchar(10)
);


insert into tab1 values (1, 10, 'A');
insert into tab1 values (1, 20, 'B');
insert into tab1 values (2, 10, 'C');
insert into tab1 values (2, 20, 'D');
insert into tab1 values (2, 30, 'E');
insert into tab1 values (3, 10, 'F');

select * from tab1;


select col1, string_agg(col3, ',') within group (order by col2) 
from tab1
group by col1
order by col1
;

 

 




以上の内容はhttps://htn20190109.hatenablog.com/entry/2024/10/07/194554より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14