Postgresql – concat_ws喜欢函数?

前端之家收集整理的这篇文章主要介绍了Postgresql – concat_ws喜欢函数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 postgresql中遇到了第一次痛苦的经历,而当时的挑战是:

如何在postgresql中执行一个concat_ws,通过以下方式从一个组中加入几个字段的值:

select concat_ws(';',field_lambda) from table_lambda group by id;
对于Postgresql 8.4及以上版本:
select ARRAY_TO_STRING(
    ARRAY_AGG(field_lambda),';'
) from table_lambda group by id;
原文链接:https://www.f2er.com/postgresql/191760.html

猜你在找的Postgre SQL相关文章