I have the following table contents:
ID kEYWORD
-------- ----------------------
1 AB
1 AC
1 AD
2 XX
2 YYY
I need to convert this to the following output:
ID kEYWORD
-------- ----------------------
1 AB,AC,AD
2 XX,YYY
How can I do this?
I don't like to use procedures, functions or any anonymous blocks
it should be a simple statement starting with select
ID kEYWORD
-------- ----------------------
1 AB
1 AC
1 AD
2 XX
2 YYY
I need to convert this to the following output:
ID kEYWORD
-------- ----------------------
1 AB,AC,AD
2 XX,YYY
How can I do this?
I don't like to use procedures, functions or any anonymous blocks
it should be a simple statement starting with select
Comment