Forum Moderators: open
Basically all it does is add more arguments to an IN clause such as
SELECT...FROM * WHERE....AND field IN (valueList)...
I would like to allow the user to basically select no filter to show and empty table, is there anyway to do that?
I have tried just having nothing in the IN clause like this
SELECT...FROM * WHERE....AND field IN ()...
but I get a complaint.
I am using SQL Server 2005.
Best Regards
NooK