Hãy thử cái này ::
WHERE sd.student_break_date is null OR '2013-01-28' >= sd.student_break_date
HOẶC bạn có thể thử ::
WHERE sd.student_break_date is null OR sd.student_break_date<'2013-01-28'
HOẶC ::
WHERE IFNULL(sd.student_break_date,'2013-01-27') <'2013-01-28'