I have Table with values
X Y Z
- --- -
1 abc P
1 def Q
I need a normal query (not pl/sql) which can give result as
X Y Z
- ------- ---
1 abc,def P,Q
i.e Based on column X the values are converted into csv format
There can be more than three columns.
You can choose any one of the following techniques to aggregate your strings
Personally, I find this syntax very readable