SQL里查询学生表里所有女生的学号,姓名和班级代码怎么写,求各位大佬解答

如题所述

第1个回答  2018-10-11
你连表名,字段都不发出来,怎么写?大概就是这样
select a.name,b.class from student a,class b where a.sno=b.sno and a.ssex=2;本回答被网友采纳
相似回答