Possible Duplicate:
Parameterizing a SQL IN clause?
In SQL Server I’d like to do something to this effect…
DECLARE @Values varchar(1000)
SET @Values = 'A, B, C'
SELECT
blah
FROM
foo
WHERE
myField IN (@Values)
Is this possible or how to accomplish this?