대답:postgresql-값 범위별 계수 대답:postgresql-값 범위별 계수
답장:postgresql-값 범위별 획득 계수
10월 9일부터 14일까지
7
select name
count(case when value <= 5 then 1 end) as "0-5",
count(case when value > 5 and value <= 10 then 1 end) as "5-10",
count(case when value > 10 and value <= 15 then 1 end) as "10-15"
from the_table
group by name;
곧 발표될 9.4 버전에서...
Open Full Answer
Reference
이 문제에 관하여(대답:postgresql-값 범위별 계수 대답:postgresql-값 범위별 계수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/abigoroth/answer-postgresql-get-count-by-value-ranges-3f91
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
select name
count(case when value <= 5 then 1 end) as "0-5",
count(case when value > 5 and value <= 10 then 1 end) as "5-10",
count(case when value > 10 and value <= 15 then 1 end) as "10-15"
from the_table
group by name;
Reference
이 문제에 관하여(대답:postgresql-값 범위별 계수 대답:postgresql-값 범위별 계수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/abigoroth/answer-postgresql-get-count-by-value-ranges-3f91텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)