首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

T-sql 相关子查询出了点有关问题求大神

2013-12-19 
T-sql 相关子查询出了点问题求大神我圈住的那个是相关子查询 , 为什么不能用不了 求大神 ?[解决办法]selec

T-sql 相关子查询出了点问题求大神
T-sql 相关子查询出了点有关问题求大神
我圈住的那个是相关子查询 , 为什么不能用不了 求大神 ?
[解决办法]

select count(*) as '总人数',sum(case when b.studentresult>=60 then 1 else 0 end) as '通过人数' 
from student a
left join result b on a.studentno=b.studentno  
left join subject c on b.subjectid=c.subjectid
where c.subjectName='设计MySchool数据库' 
and exists(select 1 
   from (select studentno,max(examdate) as examdate from result group by studentno)t 
   where b.studentno=t.studentno and b.examdate=t.examdate
  )


热点排行