I'm passing in a list as a string to a stored proc of format "('Value1', 'Value2', 'Value3')"
and storing it in @Type.
For the life of me, I can't figure out how to say something like
Select * from whatever where colName in @Type
where @Type is that formatted list.
I know this is going to be simple enough that I'll facepalm but "How do?"