I have a values in a table as shown below.  I need to get the generation times in comma seperated values for each subscriptionID.
SubscriptionID GenerationTimes
6519    NULL
6616    NULL
6617    NULL
6618    9:00:00
6618    17:00:00
6634    NULL
6698    0:00:00
I need the result as follows
SubscriptionID GenerationTimes
6519    NULL
6616    NULL
6617    NULL
6618    9:00, 17:00
6634    NULL
6698    0:00:00
you notice for subscriptionID 6618 there are two generation times and so I have to put them in one row with comma ',' separated. Please give me suggestion how i can write the T-sql statement.