Re: Calculate the ratio - Mailing list pgsql-sql

From David Johnston
Subject Re: Calculate the ratio
Date
Msg-id 003901cc5b4c$688042a0$3980c7e0$@yahoo.com
Whole thread Raw
In response to Calculate the ratio  (Andreas Forø Tollefsen <andreasft@gmail.com>)
Responses Re: Calculate the ratio  ("David Johnston" <polobo@yahoo.com>)
List pgsql-sql

SELECT cols,

SUM( CASE WHEN cf = 1 THEN 1 ELSE 0 END ) AS sum_1,

SUM ( CASE WHEN cf = 0 THEN 1 ELSE 0 END ) AS sum_0

FROM table

WHERE cf IN (0, 1)

GROUP BY cols

 

 

From: pgsql-sql-owner@postgresql.org [mailto:pgsql-sql-owner@postgresql.org] On Behalf Of Andreas Forø Tollefsen
Sent: Monday, August 15, 2011 8:22 AM
To: pgsql-sql@postgresql.org
Subject: [SQL] Calculate the ratio

 

Hi all,

 

This is probably quite simple. I want to calculate the ratio of each country (gwcode) which experiences a 1 in one column (cf).

 

Structure:

 

gid; gridyear; gwcode; area; cf

 

I want to select the SUM(area) WHERE cf = 1 into one column, and SUM(area) WHERE cf = 0 into another column and group by gridyear and gwcode.

Then i can see the ratio of the area of each country affected by cf.

 

Any suggestions?

 

Thanks.

 

A.

 

 

pgsql-sql by date:

Previous
From: msi77
Date:
Subject: Re: Calculate the ratio
Next
From: "David Johnston"
Date:
Subject: Re: Calculate the ratio