如何过滤 SQL WHERE 子句中的这些特定行?

How to filter these specific rows in SQL WHERE clause?

说我有这个 table:

ID |     A  |  B
1  |  blue  |  2
2  |  red   |  2
3  |  blue  |  1
4  |  red   |  1

假设我想要所有 A 列,除了蓝色对应于 B 列中的 2。

所以基本上结果应该给我第 2、3、4 行而不包括第 1 行。

到目前为止我有这样的东西:

SELECT *
FROM 
   Table
WHERE
   A IN ('blue','red')

同样,对于上述查询,它将包含第 1 行,因为它有蓝色。出于意图和目的,假设在 A 列中有不止这两种颜色,但我只需要这两种颜色,所以我需要第一个 WHERE 语句。当 B 列为 2 时告诉它不包括 A 列的蓝色的最简单方法是什么?

提前致谢。

What's the simplest way to tell it to not include column A's blue when column B is 2?

这看起来像:

select * 
from mytable
where a in ('blue', 'red') and not (a = 'blue' and b = 2)

您也可以这样表述:

where a = 'red' or (a = 'blue' and b <> 2)