gpt4 book ai didi

postgresql - 将postgresql中的多行连接成单行

转载 作者:行者123 更新时间:2023-11-29 14:22:39 27 4
gpt4 key购买 nike

我有一个包含很多行的表

我想将一列的所有行连接成一行

例如

   columns
-------
a
b
c
d
e

我想要下面的结果

    a,b,c,d,e

最佳答案

create table test (a text);

insert into test
values ('a'), ('b'), ('c'), ('d'), ('e');

select string_agg(a, ',') from test

SQL FIDDLE EXAMPLE

关于postgresql - 将postgresql中的多行连接成单行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17563688/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com