有表如下(表名: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);
请问谁有更好的方法?