Read the manual.
Note that the MySQL syntax is totally non-standard and the Postgres syntax is SQL99 standard, and will work on all standard databases.
SELECT * FROM users WHERE EXTRACT(MONTH FROM birthdate)=11 AND EXTRACT(DAY FROM birthdate)=18;
Postgres 7.2+
Chris