I'm not sure how (or if it's possible) to concatenate the data in the way that I need it.
Here's a sample of my data:
Service1 Serivce 2 Service 3 Code Date
NULL TS NULL 05S6 2011-01-09 00:00:00
FS NULL NULL 05S6 2011-01-09 00:00:00
Null Null AF 05S6 2011-01-09 00:00:00
Here's what I need the data to look like:
Service1 Serivce 2 Service 3 Code Date
FS TS AF 05S6 2011-01-09 00:00:00
I need only one row per DATE and per CODE, and I need all of the services for that particular Date and Code on that ONE row. How can I approach this?
Eventually I need the data to look like this (but I think I can just use "+" once I get all of the data in one row):
ServicesPerformed Code Date
FS,TS,AF 05S6 2011-01-09 00:00:00
Here's a sample of my data:
Service1 Serivce 2 Service 3 Code Date
NULL TS NULL 05S6 2011-01-09 00:00:00
FS NULL NULL 05S6 2011-01-09 00:00:00
Null Null AF 05S6 2011-01-09 00:00:00
Here's what I need the data to look like:
Service1 Serivce 2 Service 3 Code Date
FS TS AF 05S6 2011-01-09 00:00:00
I need only one row per DATE and per CODE, and I need all of the services for that particular Date and Code on that ONE row. How can I approach this?
Eventually I need the data to look like this (but I think I can just use "+" once I get all of the data in one row):
ServicesPerformed Code Date
FS,TS,AF 05S6 2011-01-09 00:00:00