I set my
declare @area as varchar(500)
set @area = '''Area1'',''Area2'''
I tried to put it in WHERE
clause, but it doesn't detect area
. I am guessing there is something wrong with set @area =
?
This is what I'm trying to bring it in:
where area in (@area)
Please help, thanks.