-
1
- #1
Does anyone know how to pass a value into a stored procedure which can be used in an 'IN' clause. It works fine passing 1 value, but I cannot get it to work passing in multiple values.
Example:
Select * from Members
Where State_Id in ('FL', 'MA')
How can I pass 'FL', 'MA' as the parameter. I do not want to specify a separate parameter for each value as I may have from 1 to 50 values possible.
Thanks,
Example:
Select * from Members
Where State_Id in ('FL', 'MA')
How can I pass 'FL', 'MA' as the parameter. I do not want to specify a separate parameter for each value as I may have from 1 to 50 values possible.
Thanks,