I have got this table which has email address of 3 employees in SQL Server
Table structure is
EmployeeId, EmployeeName, Employee email address
Data is like this:
1 Conrad Conrad@test.com
Output I need is the e-mail addresses in a single row / one column:
conrad@test.com; ali@test.com; will@test.com
Can someone please help.