adventurous1
Programmer
I need to be able to put all of the repeats into just one row of a table.
Using a similar example, my source data looks like this:
Field1 Field2 Field3
Joe Smith 555-555-5555 CogOrder1
Joe Smith 555-555-5555 CogOrder2
Joe Smith 555-555-5555 CogOrder3
Needed Output:
Field1 Field2 Field3
Joe Smith 555-555-5555 CogOrder1,CogOrder2,CogOrder3
etc....
Can this be done in SQL or does it require a PL/SQL program?
Can anyone help me with the coding for this?
Any help offered is appreciated.
Adventurous1@ureach.com
Using a similar example, my source data looks like this:
Field1 Field2 Field3
Joe Smith 555-555-5555 CogOrder1
Joe Smith 555-555-5555 CogOrder2
Joe Smith 555-555-5555 CogOrder3
Needed Output:
Field1 Field2 Field3
Joe Smith 555-555-5555 CogOrder1,CogOrder2,CogOrder3
etc....
Can this be done in SQL or does it require a PL/SQL program?
Can anyone help me with the coding for this?
Any help offered is appreciated.
Adventurous1@ureach.com