MySQL does support the IN clause, but MySQL does not support subqueries;
GOOD:
SELECT foo FROM bar WHERE field IN (1,2,3);
BAD:
SELECT foo FROM bar WHERE field IN (SELECT field FROM otherbar);
A forum, a FAQ, email notification, what else do you need?