I am getting comma separated value like this in a variable (let say variable name @listobj)
'abc' , 'xyz'
but when I am using below statement it is not giving me the correct result
SELECT * FROM someTable
Where column1 IN (@listobj)
but abc is present in the table.
Where I am doing it wrong?