我有这张桌子
name | prof |grade
------------------------
yossi math 100
tami math 70
yossi phisic 100
tami phisic 100
oren math 100
oren phisic 80
dor history 70
查询应返回数学和物理成绩为 100 的学生的姓名正确的答案是 yossi 我使用了以下内容
SELECT name FROM [dbo].[Class_grade]
where prof in ('math', 'phisic') and grade = 100
但它返回更多名称,为什么?什么是正确的查询?谢谢