This is a simple question and I can\'t seem to think of a solution.
I have this defined in my stored procedure:
@communityDesc varchar(255) = NULL
The simplest way to use this variable is:
SELECT * FROM something WHERE ',' + @communityDesc + ',' Like '%,' + AREA + ',%'
this is for tsql, for oracle use || to concatenate strings
||