I am inserting float numbers in Microsoft SQL and some of them appears as:
7E-05
5E-05
6E-05
The other float are inserted as expected.
For example this float 0.00007
is inserted as 7E-05
but this one 0.01500
as 0.015
.
I was suspecting the size of float but after reducing it to x.yyyyy I still get this kind of float. Anyone know what causing this issue?