为了 DATE 可以使用的列:
DATE
最后的空值:
ORDER BY IFNULL(`myDate`, '9999-12-31') ASC
Blanks最后:
ORDER BY IF(`myDate` = '', '9999-12-31', `myDate`) ASC