If I have a table that has two fields (client, service) and lets say the table look like this:
client | Service
1 | A
1 | B
1 | C
2 | A
2 | D
I want to do a select statement that I can have all services from each client so the result would look like this
client | Service
1 | A, B, C
2 | A, D
Is it possible in SQL? I am using oracle 10g