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?

link|improve this question
possible duplicate of Parameterizing a SQL IN clause? – Martin Smith Dec 20 '11 at 21:07
feedback

1 Answer

up vote 2 down vote accepted

I suggest taking a look at table valued parameters - these have been introduced in SQL Server 2008.

Table-valued parameters are a new parameter type in SQL Server 2008. Table-valued parameters are declared by using user-defined table types. You can use table-valued parameters to send multiple rows of data to a Transact-SQL statement or a routine, such as a stored procedure or function, without creating a temporary table or many parameters.

link|improve this answer
Thanks for quick reply... That will work – Chris Dec 20 '11 at 21:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.