如何在查询之间设置多个

时间:2018-11-11 08:16:36

标签: sql ms-access

我有一张桌子,其中包含学生的详细信息。 例如:

Name   Grade Number of subtractions
Josef  100   0
Daniel 90    2
Diana  50    100
Koby   30    200

我想获得年级在0到50之间并且减法数在100到200之间的学生的姓名,例如,它将仅重播Diana和Koby。

1 个答案:

答案 0 :(得分:1)

使用betweenAndOr运算符:

select name
from studentsdetails 
where (Grade between 0 and 50)
and (NumberOfSubtractions between 100 and 200)

或使用Or

select name
from studentsdetails 
where (Grade between 0 and 50)
Or (NumberOfSubtractions between 100 and 200)