SELECT * FROM x WHERE y IN ('a', 'b') AND something='else'
The above would check for the values a OR b in field y AND that something equals else.
You can check out this link posted by philipolson for more regarding mysql's IN http://sqlcourse2.com/setoper.html
Was that what you were looking for?
Cgraz