日期:2014-05-18 浏览次数:20505 次
select a.Sname 学生姓名,你的表示课程名的字段 课程名, case when Uname isnull then 0 else 1 end as学生会 from 学生表 a left join 你的课程名所在的表 b on a.sid=b.sid left join unions c on a.sid=c.sid
------解决方案--------------------
select a.Sname 学生姓名,b.Ssex 性别, case when Uname isnull then 0 else 1 end as学生会 from 学生表 a left join infos b on a.sid=b.sid left join unions c on a.sid=c.sid
------解决方案--------------------
select Sname,Ssex,(case when uid is null then 0 else 1 end) as 学生会 from Student a right join infos b on a.sid=b.sid left join unions c on a.sid=c.sid