대답:postgresql-값 범위별 계수 대답:postgresql-값 범위별 계수

1059 단어 postgresdatabase
어떻게 구체적인 숫자 범위를 계산합니까

답장: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

좋은 웹페이지 즐겨찾기