I need to order data of a query alphabetically, but in some elements there are digits and ordering is not "natural".
eg:
TABLE
products_id
products_name
product_price
...
The value of field products_name is:
product 1
product 2
product 10
another 4 product
new prod 2
new prod 21
new prod 10
I need to order the records like this:
another 4 product
new prod 2
new prod 10
new prod 21
product 1
product 2
product 10
Can anyone can help me? Thank you.