Data looks like this:
declare @table1 table (ReportName varchar(200), email varchar(100))
insert into @table1 values ('Finance report', '[email protected], [email protected], [email protected]')
,('Producer report', '[email protected], [email protected]')
select * from @table1
I need it like this:
**ReportName email**
Finance report [email protected]
Finance report [email protected]
Finance report [email protected]
Producer report [email protected]
Producer report [email protected]