yep. its possible. two ways to do that.one way is to use WHERE condition likeWHERE ',' + @searchString +',' LIKE '%,' + Column + ',%'other way is likeWHERE Column IN (SELECT Val FROM dbo.ParseValues(@searchstring,','))where ParseValues is a string parsing udf given belowhttp://visakhm.blogspot.com/2010/02/parsing-delimited-string.html
------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/