I have a statement like so...
SELECT * FROM FOO_TABLE WHERE ID = 1;
What I want is to be able to supply multiple ID's without having to AND. So for example....
SELECT * FROM FOO_TABLE WHERE ID = 1,2,3,4 or (1,2,3,4).
Something along those lines. Is this possible?