I should list what I have tried:
SELECT DATE_FORMAT(NOW(), '%M %D') returns "December 27th"
And
Select * from TIME_TABLE
Where
Extract(month from DATE_FIELD ) = 12
and
Extract(day from DATE_FIELD ) = 26
order by DATE_FIELD, DESCRIPTION
returns a result set, but
Select * from TIME_TABLE
Where
Extract(month from DATE_FIELD ) = DATE_FORMAT(NOW(), '%M')
and
Extract(day from DATE_FIELD ) = DATE_FORMAT(NOW(), '%D')
order by DATE_FIELD, DESCRIPTION
Returns an empty result set, so I think I need to figure out how to get the month and date as intergers.