首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

group by 句子

2012-02-23 
求一个group by 句子表大致如下:GenderSectionM1M1F1F2M2M1M2F3M2M3F3....我用selectsection,count(*)asMa

求一个group by 句子
表大致如下:

Gender             Section
M                           1
M                           1
F                             1
F                             2
M                           2
M                           1
M                           2
F                             3
M                           2
M                           3
F                             3
....

我用

select   section,   count(*)   as   MaleNum   from   table
group   by   section
having   Gender   =   'M '

求每个班的男生数量,可是好像不行,语法错误。我又想不出哪里错了。。
帮帮忙吧!

[解决办法]
create table T(Gender char(1), [Section] int)
insert T select 'M ', 1
union all select 'M ', 1
union all select 'F ', 1
union all select 'F ', 2
union all select 'M ', 2
union all select 'M ', 1
union all select 'M ', 2
union all select 'F ', 3
union all select 'M ', 2
union all select 'M ', 3
union all select 'F ', 3
union all select 'F ', 4 --新加的记录

select distinct [Section],
MaleNum=(select count(*) from T where [Section]=tmp.[Section] and Gender= 'M ')
from T as tmp

--result
Section MaleNum
----------- -----------
1 3
2 3
3 1
4 0

(4 row(s) affected)

热点排行