当前位置: 代码迷 >> SQL >> 一路SQL题
  详细解决方案

一路SQL题

热度:56   发布时间:2016-05-05 14:35:11.0
一道SQL题
有表如下(表名:score):
Name Course Mark
Tom English 81
Tom math 75
Jack English 76
Jack math 90
John English 91
John English 100
John math 81
题目:
查找出两门成绩都在80分以上的人名
我做的答案如下:
select * from score where name not in(select name from score where mark <80);

请问谁有更好的方法?
  相关解决方案