postgresql field concatenate with delimiter

3.6k Views Asked by At

Figure :

enter image description here

I'm sorry I created Google Translation This enables the character to combine? It "," it is separated on the column While merging the col1 and col2 "|" To be separated

1

There are 1 best solutions below

0
On

With following data

|     col1 |     col2 |
|----------|----------|
| aa,bb,cc | 11,22,33 |
| dd,ee,ff | 44,55,66 |

You can use PostgreSQL's string functions like below

SELECT string_agg(col1 || '|' || col2, ',') col
FROM (
    SELECT unnest(regexp_split_to_array(col1, ',')) col1
          ,unnest(regexp_split_to_array(col2, ',')) col2
          ,row_number() OVER () rn
    FROM table_name
    ) t
GROUP BY rn

to get the desired output as

|               col |
|-------------------|
| aa|11,bb|22,cc|33 |
| dd|44,ee|55,ff|66 |

SqlFiddle