Re: [INTERFACES] AVG function - Mailing list pgsql-interfaces

From Billy G. Allie
Subject Re: [INTERFACES] AVG function
Date
Msg-id 199908281816.OAA19438@bajor.mug.org
Whole thread Raw
In response to Re: [INTERFACES] AVG function  (Hannu Krosing <hannu@trust.ee>)
List pgsql-interfaces
Hannu Krosing wrote:
> rodneyr@embratel.com.br wrote:
> > 
> > I'm using the AVG function to get the average of some integer values of my
> > database,
> > but the result is comming in the integer format too, and I'm loosing some
> > precision.
> > 
> > Does someone know how to get the result of the AVG function in a float type,
> > without
> > changing the structure of my table?
> 
> Try this:
> 
> hannu=> select * from t;
> i
> -
> 4
> 4
> 4
> 4
> 3
> (5 rows)
>  
> hannu=> select avg(i * 1.0) from t;
> avg
> ---
> 3.8
> (1 row)
> 
Actually, this will work without the need for a multiplication:
bga=> select * from t;i-123456(6 rows)
bga=> select AVG(i::float) from t;avg---3.5(1 row)

-- 
____       | Billy G. Allie    | Domain....: Bill.Allie@mug.org
|  /|      | 7436 Hartwell     | Compuserve: 76337,2061
|-/-|----- | Dearborn, MI 48126| MSN.......: B_G_Allie@email.msn.com
|/  |LLIE  | (313) 582-1540    | 



pgsql-interfaces by date:

Previous
From: Spirou
Date:
Subject: [Fwd: bug ? get_groname: group 0 not found]
Next
From: Hannu Krosing
Date:
Subject: Re: [INTERFACES] AVG function