MySQL sort field by two criteria
Due to very strange conventions on the hosting side, I have API fetch data that is ordered like this:
[car0] [car0] [car1] [car2] [car]
if i do sql query on my database and order by name asc
I get
[car] [car0] [car0] [car1] [car2]
I need the columns in the same order.
Is there a way to sort the string length first and then sort by asc name, so the data retrieved from mysql might look like data from the url:
+3
source to share