I have a table with datafields in real datatype. Do you lose precision when converting to money or decimal datatype?
|
feedback
|
|
That depends on the precision and scale that you have specified for the decimal type. If you for example have a The The The | ||||
|
feedback
|
|
Float(4) (aka real) and float(8) are IEEE 754 floating point types. It is a mistake to use them to represent monetary values. They are meant for calculations in which the values have a large dynamic range while being stored in a relatively small number of bytes. The use of floating point numbers and how precise and accurate they are is a science in itself and not easily explained. | |||
|
feedback
|