-1

是否有可能并且有人可以给我一个很好的例子,在一个查询中选择一个结果集,该结果集返回人口统计或其他事物按特定分组分组的计数?这听起来真的很神秘,所以我将添加一个我试图交流的示例输出。我想要一个结果集,如:

在此处输入图像描述

因此,对于每个类别,为性别填充的字段计数、男性计数、女性计数、填充种族的计数等等。

所以像 Select curricul.class,count(stu.gender),count(stu.race),count(stu.eth) from curricul,stu group by class pivot(count(gender) for gender in (male, female)

4

1 回答 1

3

你可以简单地使用:

with curricul as
(select 1 classid, 'Math' class from dual union all
 select 2, 'Literature' from dual
)
,
 student as
( select 1 id, 1 classid, 'male' gender, 1 race, 1 eth from dual union all
    select 2, 1, 'female', 1, 2 from dual union all
    select 3, 1, 'male'  , 3, 1 from dual union all
    select 4, 1, 'male'  , 5, 7 from dual union all
    select 5, 1, 'female', 4, 8 from dual union all
    select 6, 1, 'male'  , 1, 6 from dual union all
    select 7, 2, 'female', 3, 4 from dual union all
    select 8, 2, 'female', 1, 1 from dual union all
    select 9, 2, 'female', 7, 9 from dual union all
    select 10, 2, 'male' , 9, 1 from dual union all
    select 11, 2, 'female', 8, 1 from dual
)
select s.classid, curricul.class  
    ,count(s.gender)  as count_gender
    ,sum(case when gender = 'male' then 1 else 0 end) as count_male
    ,sum(case when gender = 'female' then 1 else 0 end) as count_female
    ,count(s.race)  as count_race
    ,count(s.eth) as count_ethnicity 
from student s
inner join curricul 
    on s.classid = curricul.classid
group by s.classid, curricul.class ;
于 2016-05-20T15:26:35.167 回答