I am aware of the query syntax:
SELECT fields FROM table WHERE value in (1,2,3,4)
But I have two values (x and y), can I use the "in" syntax for them or will I have to go with what I used to use before in and have a large set of WHERE conditions:
SELECT fields FROM table WHERE (x = 1 AND y = 2) OR (x = 3 AND y = 4)