Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What difference does it make when i use float and decimal data types in mysql. Which is ideal for using.

share|improve this question
4  
Ideal for using in what? – BoltClock Mar 1 '11 at 3:50

6 Answers

up vote 26 down vote accepted

This is what I found when I had this doubt.

mysql> create table numbers (a decimal(10,2), b float);
mysql> insert into numbers values (100, 100);
mysql> select @a := (a/3), @b := (b/3), @a * 3, @b * 3 from numbers \G
*************************** 1. row ***************************
  @a := (a/3): 33.333333333
  @b := (b/3): 33.333333333333
@a + @a + @a: 99.999999999000000000000000000000
@b + @b + @b: 100

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.

share|improve this answer

The names of those types are misleading - both "float" and "decimal" are floating-point types.

In computing, floating point describes a system for representing real numbers which supports a wide range of values. Numbers are in general represented approximately to a fixed number of significant digits and scaled using an exponent. The base for the scaling is normally 2, 10 or 16.

A float in most languages is a binary floating-point type. It can accurately store base-2 values, but cannot accurately store base-10 (decimal) values. Floats are most appropriate for scientific calculations. They're not appropriate for most business-oriented math, and inappropriate use of floats will bite you. Many decimal values can't be exactly represented in base-2. 0.1 can't for instance, and so you see strange results like 1.0 - 0.1 = 0.8999999.

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.

share|improve this answer
@Michael Petrotta - user just enters his decimal numbers in the field given in forms.. i need to just store them in DB. which will be more suitable. ? – Hacker Mar 1 '11 at 4:38
@Pradeep: What will that number be used for? – Michael Petrotta Mar 1 '11 at 4:47
@Michael Petrotta - oh does it depends on wht its used for also.. basically its used for comparison with other decimal value and display purpose. – Hacker Mar 1 '11 at 10:44
@Pradeep: yes, it does matter, and you haven't really told me yet what it's used for. What kind of data are you storing in that field (monetary value, standard deviation, a timespan, etc.)? – Michael Petrotta Mar 1 '11 at 15:28
1  
@Pradeep: I feel that you're not answering my questions. That may be because you don't know the answers yourself - maybe you don't feel comfortable asking your manager or customer for more details. If that's the case, I suggest biting the bullet, sitting down with them for a couple of hours, and really walking through your application. What exactly, and in great detail, is your data being used for? – Michael Petrotta Mar 2 '11 at 3:38
show 2 more comments

decimal is for fixed quantities like money where you want a specific number of decimal places. Floats are for storing ... floating point precision numbers.

share|improve this answer

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 {m*2^n | m, n Integers} . values such as 1/5 cannot be precisely represented (without round off error). Decimal numbers are similarly limited, but represent numbers like {m*10^n | m, n Integers}. Decimals still cannot represent numbers like 1/3, but it is often the case in many common fields, like finance, that the expectation is that certain decimal fractions can always be expressed without loss of fidelity. Since a decimal number can represent a value like $0.20 (one fifth of a dollar), it is preferred in those situations.

share|improve this answer

Here's a similar question and answer that may help you

Difference between numeric,float and decimal in sql server

share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.