Re: How to increase precision? - Mailing list pgsql-sql

From Stephan Szabo
Subject Re: How to increase precision?
Date
Msg-id 20030502153816.U77106-100000@megazone23.bigpanda.com
Whole thread Raw
In response to How to increase precision?  ("Katka a Daniel Dunajsky" <daniel_katka@hotmail.com>)
List pgsql-sql
On Fri, 2 May 2003, Katka a Daniel Dunajsky wrote:

> this is a newbie question:
>
> How to increase the precision of calculations in posgresql?
>
> When I run this query:
>
> select 5/2;
>
> I get:
>
> ?column?
> --------
>        2
>
> It should be 2.5 shouldn't it?

It's doing integer division since both arguments are integers. You'll need
to make one of them something like float, double or numeric.

For example, queries like:

select 5./2;
select 5/cast(2 as float);

etc... don't do integer division because one of
the arguments isn't typed as an integer type.



pgsql-sql by date:

Previous
From: "Katka a Daniel Dunajsky"
Date:
Subject: Time formating
Next
From: Steve Crawford
Date:
Subject: Re: Best way to delete time stamped data?