So I have this:
(CURDATE() BETWEEN start_date AND end_date)
Works fine.
But when the CURDATE() is 2011-12-02 and th
CURDATE()
It will work ... BETWEEN works inclusive of the boundary values. That is,
BETWEEN
including start_date,end_date and any day falling between
CURDATE() BETWEEN start_date AND ADDDATE(CURDATE(), INTERVAL 1 DAY);