Poiché SSRS restituirà @ID come elenco separato da virgole, probabilmente il modo migliore è cercare per charindex in questo modo:
select * from A
Where charindex(','+cast(id as varchar(max))+',' , ','[email protected]+',',1)>0
Poiché SSRS restituirà @ID come elenco separato da virgole, probabilmente il modo migliore è cercare per charindex in questo modo:
select * from A
Where charindex(','+cast(id as varchar(max))+',' , ','[email protected]+',',1)>0