How can I order the mysql result by varchar column that contains day of week name?
Note that MONDAY should goes first, not SUNDAY.
|
|
|
|
|
|
|
Either redesign the column as suggested by Williham Totland, or do some string parsing to get a date representation. If the column only contains the day of week, then you could do this:
|
||||||
|
|
|
... ORDER BY date_format(order_date, '%w') = 0, date_format(order_date, '%w') ; |
||
|
|
|
|
This looks messy but still works and seems more generic:
Using if is even more generic and messier:
You can also hide the details of conversion from name to int in stored procedure. |
|||
|
|
|
|
Another way would be to create another table with those days and an int to order them by, join that table when searching, and order by it. Of course, joining on a varchar is not recommended.
SELECT * FROM WhateverTable LEFT JOIN DaysOFWeek on DaysOFWeek.day = WhateverTable.dayColumn ORDER BY DaysOfWeek.id (Apologies if that's not correct; I've been stuck with SQL server recently) Again, this is NOT recommended, but if you cannot alter the data you've already got... This will also work if there are non-standard values in the dayColumn field. |
||
|
|
|
|
I'm thinking that short of redesigning the column to use an enum instead, there's not a lot to be done for it, apart from sorting the results after you've gotten them out. Edit: A dirty hack is of course to add another table with id:weekday pairs and using joins or select in selects to fake an enum. |
||
|