postgresql 中怎么实现 group_concat

array_agg(field)

输出的是数组,如果要再转成字符串:

array_to_string( array_agg(field), ',')