Re: Sum of columns - Mailing list pgsql-general

From Marc Mamin
Subject Re: Sum of columns
Date
Msg-id B6F6FD62F2624C4C9916AC0175D56D880CE19DF8@jenmbs01.ad.intershop.net
Whole thread Raw
In response to Sum of columns  (janek12@web.de)
Responses Re: Sum of columns  (BladeOfLight16 <bladeoflight16@gmail.com>)
List pgsql-general

hi,

 

in addition to the others comments, you can also remove  " ELSE 0 " from your query.

It will result in <NULL> values that are discarded by SUM.

 

regards,

 

Marc Mamin

 

From: pgsql-general-owner@postgresql.org [mailto:pgsql-general-owner@postgresql.org] On Behalf Of janek12@web.de
Sent: Montag, 9. September 2013 03:13
To: pgsql-general@postgresql.org
Subject: [GENERAL] Sum of columns

 

Hi, 

 

this is my query:

SELECT user,

        sum(CASE WHEN lev >= 50 AND lev < 70 THEN 1 ELSE 0 END) as a,
        sum(CASE WHEN lev >= 70 AND lev < 80 THEN 1 ELSE 0 END) as b,
        sum(CASE WHEN lev >= 80 AND lev <= 90
 THEN 1 ELSE 0 END) as c,

        sum(CASE WHEN lev > 90 THEN 1 ELSE 0 END) as d,
        (SELECT a + b + a + d) AS matches
        FROM t_temp_fts 
        GROUP BY user'

 

I like to add up the 4 columns a,b,c and d of every user, but it doesn't work like this.

Does anyone know a solution

 

Janek Sendrowski

pgsql-general by date:

Previous
From: Oliver Kohll - Mailing Lists
Date:
Subject: Making substrings uppercase
Next
From: fumihisa.suzuki@justsystems.com
Date:
Subject: Hello,