Possible Duplicate:
Is there an Oracle SQL query that aggregates multiple rows into one row?
I'm trying to to create a SQL query that can return data from a table to display multiple values of a column in one row.
For example this is the table setup:
SEQ ROWSEQNUM ASSISTING_ASSOCIATES
100 2 19332816
100 1 1366344
103 1 12228238
104 1 1366474
I need to query results to look like this:
SEQ ROWSEQNUM ASSISTING_ASSOCIATES
100 1 1366344; 19332816
103 1 12228238
104 1 1366474
Does anybody have any insight?