MySQL: Find birthdays between a date range, but ignoring the year
I'm trying to query for users with birthdays falling between a given date range. The users table stores birthdays in a pair of int columns: dob_month (1 to 12) and dob_day (1 to 31). The date range I'm querying with…