I have a query with a where clause that looks like this:
WHERE field IN ( 1, 2, 3 )
It is possible to parameterize this so that it looks something like this:
WHERE field in (: list)?
How do you create: parameter list, considering it a list of ints, which can be from 1 to 10 ints?
ASP.net, webforms, if that matters.
chris source
share