通过sql 语句查询如何实现统计

2024-12-03 10:32:21
推荐回答(1个)
回答1:

select 班级,sum(iif(性别='男',1,0)) as 男,sum(iif(性别='女',1,0)) as 女
from 表 where 班级=201475
group by 班级