I'm using Oracle 10 g, I have a scenario similar to this:
No  Name
--  -----
1   Rony
1   James
1   Aby
2   Sam
2   Willy
3   Mike
I need to aggregate and concatenate the strings (with a single space in between), in a way to get the results:
No  Name
--  -----
1   Rony James Aby
2   Sam Willy
3   Mike
I'm using Oracle 10g and have to implement this using SQL and not PL/SQL. Is there a way out?
 
     
     
     
    