Concatenation in a Group by
642591Jun 2 2008 — edited Jun 2 2008Hi,
I'd like to concatenate attributes on a vertical basis when I perform a Group by
For example:
TABLE_TEST
ID STATUS
1003 PL
1003 OP
1003 OP
I am looking for
ID STATUS
1003 PL, OP, OP
The query would be something like:
Select ID, concat(STATUS)
From TABLE_TEST
Group by ID
Is that possible? Cheers