I need to store a couple of money related fields in the database but I'm not sure which data type to use between money and decimal.
|
Decimal and money ought to be pretty reliable. What i can assure you (from painful personal experience from inherited applications) is DO NOT use float! |
|||||||||||||||
|
|
I guess it comes down to precision and scale. IIRC, |
|||
|
|
|
I always use Decimal; never used MONEY before. Recently, I found an article regarding decimal versus money data type in Sql server that you might find interesting: It also seems that the money datatype does not always result in accurate results when you perform calculations with it : click What I've done as wel in the past, is using an INT field, and store the amount in cents (eurocent / dollarcent). |
|||
|
|
It depends on your application!!! I work in financial services where we normally consider price to be significant to 5 decimal places after the point, which of course when you buy a couple of million at 3.12345pence/cents is a significant amount. Some applications will supply their own sql type to handle this. On the other hand, this might not be necessary. <Humour> Contractor rates always seemed to be rounded to the nearest £100, but currently seem to be to nearest £25 pounds in the current credit crunch. </Humour> |
|||
|
|
|
Use decimal and use more decimal places than you think you will need so that caclulations will be correct. Money does not alwys return correct results in calculations. Under no circumstances use float or real as these are inexact datatypes and can cause calculations to be wrong (especially as they get more complex). |
|||
|
|
|
Don't align your thoughts based on available datatypes. Rather, analyze your requirement and then see which datatype fits best. Float is anytime the worst choice considering the limitation of the architecture in storing binary version of floating point numbers. Money is a standard unit and will surely have more support for handling money related operations. In case of decimal, you'll have to handle each and everything but you know it's only you who is handling a decimal type, thus no surprises which you may get with other two data types. |
|||
|
|