I'm looking to just select a certain month and date (12/25), but don't care about the year. I tried this
WHERE DAY(date) = 25 AND MONTH(date) = 12;
But that didn't work. Any way to just search month and day? The field is timestamp without time zone.