G
Guest
I have an arbitrary number of values in the WHERE clause:
select foo
from bar
where
foobar = '1'
and foobar = '2'
...
and foobar = 'n-1'
and foobar = 'n'
What's the best way to program this?
Thank you.
select foo
from bar
where
foobar = '1'
and foobar = '2'
...
and foobar = 'n-1'
and foobar = 'n'
What's the best way to program this?
Thank you.