查询某个班男生的人数sql语句

查询某个班男生的人数sql语句
2024-12-04 05:51:23
推荐回答(3个)
回答1:

select count(1) from student where sex = '男';

-- 望采纳

回答2:

select count(*) from table where 班级列=“班级名”sex='男';

回答3:

select count(*) from table where 班级列=“班级名”and sex='男';