I have a FLOAT column that contains very small digits like 0.00000000000234
When I select them in MySQL, I return them to exponential notation, for example 2.34e-13. Is there a way to change the formatting of these numbers to force MySQL to return it as 0.00000000000234?
Ultimately, what I would like to do is change the mapping, not the basic representation of the number. Thus, it is likely to be a display or format setting. MySQL has a FORMAT () function, but it doesn't look like what I want (it puts numbers in a format like 123,456.78).
floating-point mysql
Stephen
source share