I am creating an SSIS package which uses Execute sql task and Script task. this package displays table contents based on the parameter.
I gave below query in the execute-sql task
Select * from Production.Product Where ProductID in ( 316,324)
I need to assign the values 316, 324 into a parameter and populate result-set. how to assign multiple values in a parameter variable? please help