一个表 有两个字段: 姓名(name) 性别(sex),求 用一条sql 语句查出男生、女生各有多少人!
5个回答
展开全部
select Count(name) as '男生总数' from table where sex='男'
union
select Count(name) as '男生总数' from table where sex='女'
union
select Count(name) as '男生总数' from table where sex='女'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select sum(case when sex='男' then 1 else 0 end),
sum(case when sex='女' then 1 else 0 end)
from tab
sum(case when sex='女' then 1 else 0 end)
from tab
追问
then 1 else 0 end 是干嘛的???
追答
如果是男人,统计+1,否则为0
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SELECT T.SEX,COUNT(*) FROM A_TEST T GROUP BY T.SEX;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select count(sex) from table group by sex
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select (select count(*) from test where sex='男') 男,(select count(*) from test where sex='女') 女 from dual;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询