I have a table in MYSQL (you can see here link ), where the price is commas and not points:
2.33 11.00
When I will give an order by:
ORDER BY preco ASC
The system understands that it is a string and puts the 11.00 in front, how to do this conversion to the number at the time of ORDER BY?
Just to tell, I can not modify the table, it is not mine and I do not have this permission.