Possible Duplicate:
Merge row values into a CSV (a.k.a GROUP_CONCAT for SQL Server)
Basicly there are some same data with some different fields. And our client wants to merge that kind of data. I've shown it below.
season_id | service_id | service_name | product_line | service_date
10-12/11 | PIM0768 | Hilton NYC | H | 2012-03-02
10-12/11 | PIM0954 | Hilton NYC | AB1 | 2012-03-02
season_id | service_id | service_name | product_line | service_date
10-12/11 | PIM0768,PIM0954 | Hilton NYC | H,AB1 | 2012-03-02
How can i do that?