Re: Sum of columns

Поиск
Список
Период
Сортировка
От Marc Mamin
Тема Re: Sum of columns
Дата
Msg-id B6F6FD62F2624C4C9916AC0175D56D880CE19DF8@jenmbs01.ad.intershop.net
обсуждение исходный текст
Ответ на Sum of columns  (janek12@web.de)
Ответы Re: Sum of columns  (BladeOfLight16 <bladeoflight16@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Oliver Kohll - Mailing Lists
Дата:
Сообщение: Making substrings uppercase
Следующее
От: fumihisa.suzuki@justsystems.com
Дата:
Сообщение: Hello,