Re: [SQL] calulating with money type impossible ?

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: De Moudt Walter <wdemoudt(at)planetinternet(dot)be>
Cc: psql-general <pgsql-general(at)postgresql(dot)org>, pgsql-sql <pgsql-sql(at)postgresql(dot)org>
Subject: Re: [SQL] calulating with money type impossible ?
Date: 1999-11-06 14:48:59
Message-ID: Pine.LNX.4.20.9911061547000.347-100000@peter-e.yi.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql

The money type is deprecated in favour of the NUMERIC(9,2) (or whatever)
type. There indeed aren't a lot of functions and operators for money, and
no one is going to implement them now. In fact, type money might disappear
soon!

-Peter

On 1999-11-05, De Moudt Walter mentioned:

> Hi,
>
> This is kind of a repost, because i didn't get any answers on it last
> time :-(
>
> Trying to find a way to calculate with the money-type. The kind of :
>
> select (sales_price/transport_costs) as trans_rate from account_details;
>
> to get the ratio of to amounts of money. The result should be a float!
>
> Well, it doesn't seem possible.
> In pg_proc table i found 2 procedures possibly usable for money
> conversion:
> cash_out(): takes one money argument, delivers a int4
> cash_in() : takes one argument (don't know what kind) and delivers a
> money-type.
>
> Here's what i got with it :
>
> bookbiz=> select cash_in(20);
> pqReadData() -- backend closed the channel unexpectedly.
> This probably means the backend terminated abnormally
> before or while processing the request.
> We have lost the connection to the backend, so further processing is
> impossible. Terminating.
> \* so i reconnect \*
> [walter(at)localhost walter]$ psql bookbiz
>
> bookbiz=> select cash_out('$25.00');
> cash_out
> ---------
> 136509096
> (1 row)
> bookbiz=> select cash_out('$25.00');
> cash_out
> ---------
> 136508128
> (1 row)
> bookbiz=>
> (2 different results for the same argument)
> So cash_in kicks me out, an cash_out just delivers nonsens.
>
> I'm using postgresql server version 6.5.2.1
> and client 6.5.1.2, RPM-versions on RedHat 6.0.
>
> Has any-one done better with money (on postgres) ?
> Please let me know, if it isn't possible as well.. then i just
> change my money-fields to floats
>
> Thanks
>
> De Moudt Walter.
>
> ************
>
>

--
Peter Eisentraut Sernanders vaeg 10:115
peter_e(at)gmx(dot)net 75262 Uppsala
http://yi.org/peter-e/ Sweden

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Peter Eisentraut 1999-11-06 14:59:29 Re: [GENERAL] Banner (fwd)
Previous Message Peter Eisentraut 1999-11-06 14:36:43 Re: [GENERAL] Help with query (fwd)

Browse pgsql-sql by date

  From Date Subject
Next Message Bruce Momjian 1999-11-06 16:45:10 Re: [SQL] pg_dump and "archive = none" ??8
Previous Message Peter Eisentraut 1999-11-06 14:26:12 Re: [SQL] arrays of numeric?