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 [email protected]
Output I need is the e-mail addresses in a single row / one column:
[email protected]; [email protected]; [email protected]
Can someone please help.