My stored procedure has the following code:
WHERE tag IN (@InValue)
I want to send a list of tags as an input parameter
EXEC dbo.TestSelect @InValue = '''Test1'',''Test2'',''Test3'''
am I close?
|
My stored procedure has the following code:
I want to send a list of tags as an input parameter
am I close? | ||||
feedback
|
|
I suggest taking a look at table valued parameters - these have been introduced in SQL Server 2008.
| |||
|
feedback
|