Hi guys,
I have a stored procedure that take many input parameters including an @userID.
Now, in the core of the SP I select from a view using the following Where close :
Where userID = @userID
This works fine. Now I want to pass multiple users to be able wo query it like this :
where userID in (1,2,...)
How can I pass the value 1,2 from one input parameter ?
Thanks