How can I append records of two fields in single row.
Let's say, we have two columns in a table containing n number of records. I need to append each row having comma delimited in a single row.
Col1
Abs
Abd
Abf
Abg
Col2
10
15
20
0
Desired output
O/pcol
Abs:10 ;Abd:15 ;Abf:20 ;Abg:0
I hope this helps.