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 左关联条件查询learn and write

 

上一篇:【MySQL E-R】E-R图的创建使用


下一篇:FieldType数据库字段类型