I have two columns, column1 and 2 with 10 records each for example:
Column1 (A, A, A, B, B, B, B, C, C, D) and Column2 (1, 1, 2, 3, 3, 2, 1, 4, 4, 1)
I need to create third column, column3 with these two columns such that, column3= (A_1_1_2, B_3_3_2_1, C_4_4, D_1)
Please help me how to do this, I am using group by statements and also concatinations but not able to figure out how.