How can I order the mysql result by varchar column that contains day of week name?
Note that MONDAY should goes first, not SUNDAY.
Found another way, your can reverse order bye week
ORDER BY date_format(date_name, '%w') DESC;