SqlServer 左关联条件查询learn and write
作者:互联网
/*
查询思路分析:
1 首先是查询一年级,班级表.
2 关联学生表的字段,需要查询女神的信息。就写代表性别的字段 sex,用and 查询
3 where条件查询,去实现性别的查询. 用NJID字段去代表了班级表中的几年级
*/
--查询一年级 女学生人数有多少
select * from student_demo as 学生表
left join classstu as 班级表
On 学生表.NJID=班级表.NJID
where 班级表.njid=1 and sex='女';
--班级表
select * from classStu;
--学生表
select * from student_demo;
效果
标签:班级,--,SqlServer,查询,write,学生,learn,NJID,select 来源: https://blog.csdn.net/chenggong9527/article/details/123238020