我有以下数据-
status_table 表
我想按如下方式过滤这些数据-
OK - 如果任何行的值为“OK”,这应该返回 num(11)。
Select distinct Num from Status_table where status = 'ok') -- Working fine
否- 如果任何行的值为“否”,则应返回 num(11)。
Select distinct Num from Status_table where status = 'No') -- Working fine
是- 仅当所有值都为“是”时才应返回“11”
我编写以下查询
Select distinct Num from Status_table where status = 'yes')
这不起作用,因为它会列出“11”,但我只想在所有状态都为“是”时列出它