Need your help again.
Wanted to know is there any way to pass multiple value to single parameter in SQL Server 2012?
For example,
id item_name item_code
1 boots 23
2 hat 5
3 dress 11
Let's say in the case above, I have parameter @inp_code
What to do, so when I will pass '23' and '11' to the parameter so I could get the output below:
id item_name item_code
1 boots 23
3 dress 11