Guest_imported
New member
- Jan 1, 1970
- 0
I have a table where there is a int field (id)and a str data.I want to concatenate all the string data for which the int data (id) is the same.
Eg: id str1
1 aaa
1 bbb
1 ccc
2 yyy
2 zzz
I want the result as
1 aaabbbccc
2 yyyzzz
Can anyone give a soluting for this.
Eg: id str1
1 aaa
1 bbb
1 ccc
2 yyy
2 zzz
I want the result as
1 aaabbbccc
2 yyyzzz
Can anyone give a soluting for this.