show/hide this revision's text 5 Rollback to Revision 3

How do I parameterize a query containing an IN clause with a variable number of arguments, like this one?

select * from Tags 
where Name in ('ruby','rails','scruffy','rubyonrails')
order by Count desc

In this query, the number of arguments could be anywhere from 1 to 5.

I would prefer not to use a dedicated stored procedure for this (or XML), but if there is some fancy SQL Server 2008 specific way of doing it elegantly, I am open to that.

Related to: http://stackoverflow.com/questions/303149/parameterized-queries-with-like-and-in-conditions

show/hide this revision's text 4 link to previous question

How do I parameterize a query containing an IN clause with a variable number of arguments, like this one?

select * from Tags 
where Name in ('ruby','rails','scruffy','rubyonrails')
order by Count desc

In this query, the number of arguments could be anywhere from 1 to 5.

I would prefer not to use a dedicated stored procedure for this (or XML), but if there is some fancy SQL Server 2008 specific way of doing it elegantly, I am open to that.

Related to: http://stackoverflow.com/questions/303149/parameterized-queries-with-like-and-in-conditions

show/hide this revision's text 3 Rollback to Revision 1
show/hide this revision's text 2 close message
show/hide this revision's text 1