Hi,
I am running a simple statment below which gives the output as follow:
select '''' + name + '''' + ',' as Emp_Names from dbo.employee
Emp_Names
'Jason',
'Robert',
'Celia',
'Linda',
'David',
'James',
'Alison',
'Chris',
'Mary',
Is there a way in SQL that can show my desired output as:
Emp_Names 'Jason', 'Robert','Celia','Linda','David','James','Alison','Chris','Mary',
i can press a Delete and End together to get there but only for a handful records but not for a hundred records...
Thanks all!
i am using SQL Server 2005 +