I have a Transact-SQL query that uses the IN operator. Something like this:
select * from myTable where myColumn in (1,2,3,4)
Is there a wa
I think you'll have to declare a string and then execute that SQL string.
Have a look at sp_executeSQL