What difference does it make when i use float and decimal data types in mysql. Which is ideal for using.
|
|
This is what I found when I had this doubt.
The decimal did exactly what's supposed to do on this cases, it truncated the rest, thus losing the 1/3 part. So for sums the decimal is better, but for divisions the float is better, up to some point, of course. I mean, using DECIMAL will not give you a "fail proof arithmetic" in any means. Hope this helps. |
||||
|
|
|
The names of those types are misleading - both "float" and "decimal" are floating-point types.
A A decimal floating-point number is an good type for most business math (but any built-in "money" type is more appropriate for financial calculations), where the range of values exceeds that provided by fixed-point or integer types, and fractional values are needed. |
|||||||||||||
|
|
decimal is for fixed quantities like money where you want a specific number of decimal places. Floats are for storing ... floating point precision numbers. |
|||
|
|
|
Not just specific to MySQL, the difference between float and decimal types is the way that they represent fractional values. Floating point types represent fractions in binary, which can only represent values as |
|||
|
|
|
Here's a similar question and answer that may help you |
|||
|
|
|
declare @float as float(10) declare @Decimal as decimal(10) declare @Inetger as int set @float =10.7 set @Decimal =10.7 set @Inetger=@Decimal print @Inetger in float when set value to integer print 10 but in decimal 11 |
|||
|
|