vote up 4 vote down star
2

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 :)

flag

60% accept rate

4 Answers

vote up 3 vote down check

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|flag
"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 at 18:03
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 at 18:03
I don't think there would be an instance of multiplying a money by money; money by int or money by float perhaps. – Wayne M Feb 24 at 18:08
.. but it's still puzzling why money * money would not have the precision of money. – Learning Feb 24 at 18:11
@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 at 19:36
vote up 3 vote down

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|flag
1  
how many 1 cent coins can a dollar bill get you? an answer to this requires money / money. – Learning Feb 24 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 at 18:27
1  
@Learning in that case the result is not money, but a float. (Basic dimensional analysis.) – Richard Feb 24 at 18:50
+1: Good explanation. – John Sansom Feb 24 at 19:26
@Learning: Do you ask the database how many cents in a dollar a lot? Anyway, that would return the right result. His problem was that money / money was only precise to four digits (it was 0.2949), then when multiplied by 10000 it became 2949.0000. – configurator Feb 24 at 22:18
show 4 more comments
vote up 0 vote down

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|flag
vote up 0 vote down

@configurator you may be right when you said

you don't multiply/divide money by money!

but as per Data Type Precedence standards when an operator combines two expressions of different data types, the rules for data type precedence specify that the data type with the lower precedence is converted to the data type with the higher precedence.

so in your example when you divided money with decimal, money was implicitly converted to decimal as decimal has higher precedence than money and thus you had same result for decimal/decimal and money/decimal calculations.

link|flag

Your Answer

Get an OpenID
or

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