Re: Rounding result of expression in SELECT ..AS.. - Mailing list pgsql-novice

From Jean-Yves F. Barbier
Subject Re: Rounding result of expression in SELECT ..AS..
Date
Msg-id 20111215144720.5ba2740a@anubis.defcon1
Whole thread Raw
In response to Rounding result of expression in SELECT ..AS..  (Michael Rowan <mike.rowan@internode.on.net>)
List pgsql-novice
On Fri, 16 Dec 2011 00:06:54 +1030
Michael Rowan <mike.rowan@internode.on.net> wrote:


> My problem is that the value in totalcost is, like, 49.500000000000
>
> SELECT round((netcost+taxsum)*quantity, 2) AS totalcost FROM etc etc
>
> gives the same result.   What I want is 2DP, ie 49.50 in this example.
>  Is there a way to achieve this?

SELECT TRUNC(myBioutifuelCalcul, NbOfDecimalsWanted);

--
Falling in love makes smoking pot all day look like the ultimate in
restraint. -- Dave Sim, author of "Cerebus".

pgsql-novice by date:

Previous
From: Michael Rowan
Date:
Subject: Rounding result of expression in SELECT ..AS..
Next
From: Jayadevan M
Date:
Subject: Re: Rounding result of expression in SELECT ..AS..