I want to order query results by name, then on a specific table alphanumerically.
This works for all results by alphanumeric:
`ORDER BY 'name'+0 ASC"`;
But I need only table 'week' sorted alphanumerically, all other results alpha. I have tried the following but not working:
ORDER BY name, week('name'+0) ASC";
Table week
results should be like:
Week 1
Week 2
Week 3
Week 4
...
Week10
Not:
Week 1
Week 10...
See db-fiddle