这应该是一个简单的问题,但由于某种原因我无法让它工作。我有一张如下表:
|Name|Attribute|
----------------
|Foo | 1 |
|Foo | 2 |
|Foo | 3 |
|Bar | 1 |
|Bar | 2 |
|Bar | 3 |
|Yum | 1 |
|Yum | 2 |
|Yum | 3 |
我想像下面这样过滤它
|Name|Attribute|
----------------
|Foo | 2 |
|Foo | 3 |
|Bar | 1 |
|Bar | 2 |
|Bar | 3 |
请注意,我已经删除了所有"Yum",并且仅在属性= 1时才删除了"Foo">
问题是当我做这样的事情时
SELECT *
FROM table
WHERE name in ('Foo', 'Bar')
AND (name != 'Foo' AND attribute != 1)
我得到这个结果
|Name|Attribute|
----------------
|Bar | 2 |
|Bar | 3 |
我会认为括号将事情组合在一起?
我认为
就or
而言:
where (name = 'Bar') or (name = 'Foo' and attribute <> 1)
Select
*
From
table
Where
(Name <> 'Yum') and
not (Name = 'Foo' and attribute = 1)