Re: Data Type for Money - Mailing list pgsql-general

From Tom Lane
Subject Re: Data Type for Money
Date
Msg-id 20211.1325269672@sss.pgh.pa.us
Whole thread Raw
In response to Re: Data Type for Money  (Carlos Mennens <carlos.mennens@gmail.com>)
List pgsql-general
Carlos Mennens <carlos.mennens@gmail.com> writes:
> Thanks. I just for some reason can't see or understand the difference
> between 'decimal' & 'numeric'. Why have two data types for the same
> values? Am I missing something?

There isn't any difference, in Postgres.  There are two type names
because the SQL standard requires us to accept both names.  In a quick
look in the standard it appears that the only difference is this:

         17)NUMERIC specifies the data type exact numeric, with the decimal
            precision and scale specified by the <precision> and <scale>.

         18)DECIMAL specifies the data type exact numeric, with the decimal
            scale specified by the <scale> and the implementation-defined
            decimal precision equal to or greater than the value of the
            specified <precision>.

ie, for DECIMAL the implementation is allowed to allow more digits than
requested to the left of the decimal point.  Postgres doesn't exercise
that freedom so there's no difference between these types for us.

            regards, tom lane

pgsql-general by date:

Previous
From: Carlos Mennens
Date:
Subject: Re: Data Type for Money
Next
From: Alexander Farber
Date:
Subject: Re: Verifying a timestamp is null or in the past