I have a table with data as mentioned below.
Name | Type | Data | Time
DN60 | LTE | CPU Load | 2/14/2016 7:00
DN60 | LTE | CPU Load | 2/14/2016 8:00
DN60 | LTE | CPU Load | 2/14/2016 9:00
I want the final output to be of one row like below. Since the date will be always for current day, the date value can be ignored in the output.
Name | Type | Data | Time
DN60 | LTE | CPU Load | 07:00,08:00,09:00
How can I accomplish this with a simple SQL statement, if at all. I am using SQL Server 2008.