postgresql 合并函数 经常使用,今天我们介绍两个。
1、函数:string_agg('' , '') 把字符串拼接成一行 ,例如:
select string_agg(name , ',') from user
2、如果有参数不是字符串格式,可以转化一下,比如: id||''
select string_agg( id||'' , ',')from user where id <8
3、array_to_string--将sql中的数组转为字符串,array_agg --将sql中的数据转为数组处理,一般情况下两个配合使用,例如“
select type , array_to_string(array_agg(name),',') from user_info group by type;
查询结果如下格式: