用一条SQL语句 查询出每门课程都大于80分的学生姓名" 的实现方式
建表:
1 create table Score( 2 name varchar(20), 3 course varchar(20), 4 score int) 5 6 go 7 8 insert Score 9 select 'HanMeimei','Chinese',81 union all 10 select 'HanMeimei','Mathematics',75 union all 11 select 'HanMeimei','History',81 union all 12 select 'HanMeimei','Geography',75 union all 13 select 'LiLei','Chinese',88 union all 14 select 'LiLei','Mathematics',90 union all 15 select 'JimGreen','Chinese',81 union all 16 select 'JimGreen','Mathematics',100 union all 17 select 'JimGreen','English',90
建立索引
create nonclustered index UIX_Score_Score on score(score) include (name) create nonclustered index UIX_Score_Name on score(name) create nonclustered index UIX_Score_Course on score(course) include(name)
方法1: 找出有科目没有达到80分的姓名,然后过滤
1 select distinct name 2 from score a 3 where not exists(select 1 from score where a.name=name and score<80)
1 select distinct name 2 from score 3 where name not in (select name from score where score<80)
方法2: 通过分组后过滤的方式
1 select name 2 from score 3 group by name 4 having COUNT(1)=SUM(case when score>=80 then 1 else 0 end)
1 select name 2 from score 3 group by name 4 having MIN(score)>=80
在记录较少(9条)的情况下 以上四种方式的执行计划(SQL2008)用时比例约为
1:1:1:1
更新:
在记录数较多(49995条)的情况下,以上四种方式的执行计划(SQL2008)用时比例为
3:85:6:6
浙公网安备 33010602011771号