cancel
Showing results for 
Search instead for 
Did you mean: 

How to concatenate multiple columns using HANA Flowgraphs

former_member308471
Participant
0 Kudos

Hi All,

I have a Source table where I have multiple columns.... I wish to concatenate them together and map it to single column in the Target table.

Can anyone help me whether it is possible in flowgraphs and what are the relevant steps?

Regards,

Kiran Shenvi

Accepted Solutions (1)

Accepted Solutions (1)

christoph_gilde
Explorer
0 Kudos

You can concatenate the columns using standard SQL expression. Use a filter node and put the following expression into the target field:

<source_field1> || <source_field2> ....

In case your source fields are no character field, you might need som conversion functions in between.

Answers (0)