I'm curious as to whether or not there is a real difference between the money datatype and something like decimal(19,4) (which is what money uses internally, I believe).

I'm aware that money is specific to SQL Server. What I want to know is if there is a compelling reason to choose one over the other; most SQL Server samples (e.g. the AdventureWorks database) use money and not decimal for things like price information.

Should I just continue to use the money datatype, or is there a benefit to using decimal instead? Money is fewer characters to type but that's not a valid reason :)

link|improve this question

feedback

5 Answers

up vote 19 down vote accepted

Never ever should you use money it is not precise and it is pure garbage, always use decimal/numeric

run this to see what I mean

DECLARE
    @mon1 MONEY,
    @mon2 MONEY,
    @mon3 MONEY,
    @mon4 MONEY,
    @num1 DECIMAL(19,4),
    @num2 DECIMAL(19,4),
    @num3 DECIMAL(19,4),
    @num4 DECIMAL(19,4)

    SELECT
    @mon1 = 100, @mon2 = 339, @mon3 = 10000,
    @num1 = 100, @num2 = 339, @num3 = 10000

    SET @mon4 = @mon1/@mon2*@mon3
    SET @num4 = @num1/@num2*@num3

    SELECT @mon4 AS moneyresult,
    @num4 AS numericresult

Output: 2949.0000 2949.8525

To some of the people who said that toy don't divide money by money

Here is one of my queries to calculate correlations, changing that to money gives wrong results

select t1.index_id,t2.index_id,(avg(t1.monret*t2.monret) 
    -(avg(t1.monret) * avg(t2.monret)))
            /((sqrt(avg(square(t1.monret)) - square(avg(t1.monret)))) 
            *(sqrt(avg(square(t2.monret)) - square(avg(t2.monret))))),
current_timestamp,@MaxDate
            from Table1 t1  join Table1 t2  on t1.Date = traDate
            group by t1.index_id,t2.index_id
link|improve this answer
2  
"Never" is a strong word. "Money" is useful for casting results to that type for display to the user in a culture-sensitive way, but you're right that it's very bad to use for the calculations itself. – Joel Coehoorn Feb 24 '09 at 18:03
3  
Your example is not meaningful, since nobody will ever multiply two objects of type money. If you want to prove your point, you need to compare multiplying a money by a decimal to multiplying a decimal by a decimal. – Brian Feb 24 '09 at 18:03
1  
.. but it's still puzzling why money * money would not have the precision of money. – Learning Feb 24 '09 at 18:11
1  
@Learning: it does have a precision of money. However, you still end up with rounding errors that can accumulate over time. The decimal type doesn't use binary arithmetic: it guarantees it gets the same base 10 results you would from doing it on paper. – Joel Coehoorn Feb 24 '09 at 19:36
2  
Multiplication and division of money over money aside, this 'illustration' is manipulative. It's a documented fact that money has a fixed and very limited precision. In such cases one should first multiply, and then divide. Change the order of operators in this example and you will get identical results. A money essentially is a 64-bit int, and if you were to deal with ints, you would multiply before dividing. – Andriy M Feb 8 '11 at 13:34
show 7 more comments
feedback

SQLMenace said money is inexact. But you don't multiply/divide money by money! How much is 3 dollars times 50 cents? 150 dollarcents? You multiply/divide money by scalars, which should be decimal.

DECLARE
@mon1 MONEY,
@mon4 MONEY,
@num1 DECIMAL(19,4),
@num2 DECIMAL(19,4),
@num3 DECIMAL(19,4),
@num4 DECIMAL(19,4)

SELECT
@mon1 = 100,
@num1 = 100, @num2 = 339, @num3 = 10000

SET @mon4 = @mon1/@num2*@num3
SET @num4 = @num1/@num2*@num3

SELECT @mon4 AS moneyresult,
@num4 AS numericresult

Results in the correct result:

moneyresult           numericresult
--------------------- ---------------------------------------
2949.8525             2949.8525

money is good as long as you don't need more than 4 decimal digits, and you make sure your scalars - which do not represent money - are decimals.

link|improve this answer
11  
how many 1 cent coins can a dollar bill get you? an answer to this requires money / money. – Learning Feb 24 '09 at 18:23
I added a correlation query to my answer that I run for monthly performance, what would happen if I used money data type? – SQLMenace Feb 24 '09 at 18:27
4  
@Learning in that case the result is not money, but a float. (Basic dimensional analysis.) – Richard Feb 24 '09 at 18:50
+1: Good explanation. – John Sansom Feb 24 '09 at 19:26
3  
+1 for coining the word "dollarcents" – mandreko Sep 22 '11 at 19:09
show 6 more comments
feedback

I just saw this entry... http://thavash.spaces.live.com/blog/cns!CF6232111374DFD2!223.entry

which basically says that money has a precision issue....

declare @m money
declare @d decimal(9,2)

set @m = 19.34
set @d = 19.34

select (@m/1000)*1000
select (@d/1000)*1000

For money type, you will get 19.30 instead of 19.34. I am not sure if there is application scenario that divides money into 1000 parts for calculation but this example does expose some limitations.

Harsha

link|improve this answer
feedback

You have to be careful when sum/multiple/divide/subtract variable that are of different types as SQL automatically cast the result to one of the two types. It's a good practice to operate on variable of the same type, or always explicitly cast the result (or even each variable within the operation/expression).

link|improve this answer
feedback

We've just come across a very similar issue and I'm now very much a +1 for never using Money except in top level presentation. We have multiple tables (effectively a sales voucher and sales invoice) each of which contains one or more Money fields for historical reasons, and we need to perform a pro-rata calculation to work out how much of the total invoice Tax is relevant to each line on the sales voucher. Our calculation is

vat proportion = total invoice vat x (voucher line value / total invoice value)

This results in a real world money / money calculation which causes scale errors on the division part, which then multiplies up into an incorrect vat proportion. When these values are subsequently added, we end up with a sum of the vat proportions which do not add up to the total invoice value. Had either of the values in the brackets been a decimal (I'm about to cast one of them as such) the vat proportion would be correct.

When the brackets weren't there originally this used to work, I guess because of the larger values involved, it was effectively simulating a higher scale. We added the brackets because it was doing the multiplication first, which was in some rare cases blowing the precision available for the calculation, but this has now caused this much more common error.

link|improve this answer
feedback

protected by Community Dec 11 '11 at 12:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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