简体   繁体   中英

How to concat columns with 2 delimiters in hive

How to concat columns with 2 delimiters in hive. Please find below the input columns.

column1 column2 column3 column4 column5 column6 column7 column8
1        abc    dfe     ghi     jkl     mno     pqr     1
2        abc    dfe     ghi     jkl     mno     pqr     1

Required output concatenated string grouped by colum8 ie, value 1.

1:abc:dfe:ghi:jkl-mno:pqr,2:abc:dfe:ghi:jkl-mno:pqr

can someone help me.

Can you try this?
First, create new columns concatenating each columns for every row then collect the concantenated columns (using collect_list) into one column by grouping them based on column8 then concatenate it (using concat_ws):

select concat_ws(',',
                 collect_list(concat(column1, ':', column2, ':', column3, ':', column4,':', column5, '-', column6, ':', column7
                                    )
                             )
                ) as output
from your_table
group by column8;

I would write this as:

select concat_ws(',',
                 collect_list(concat_ws(':', column1, column2, column3, column4, column5 || '-' || column6, column7)
                             )
                ) as output
from your_table
group by column8;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM