How to concatenate a column value with single quotes and a comma in sql?
select tpaa_id from dbo.Sheet
where tpaa_id is not null
At present query returns, value as ..
ABC123
ABC456
We have around 1000 records.
I expect to return as
'ABC123',
'ABC456',