2

我的本地服务器上有一个简单的表。

mysql> desc table ;
+-------+---------+------+-----+---------+-------+
| Field | Type    | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+-------+
| id    | int(10) | YES  |     | NULL    |       | 
| count | int(10) | YES  |     | NULL    |       | 
+-------+---------+------+-----+---------+-------+
2 rows in set (0.00 sec

它只有三个记录。

mysql> select * from uday ;
+------+-------+
| id   | count |
+------+-------+
|    1 |     1 | 
|    2 |     2 | 
|    3 |     0 | 
|    4 |  NULL | 
+------+-------+
4 rows in set (0.00 sec)

现在,为什么我在下面的结果中没有看到第四列..?

mysql> select * from uday where count NOT IN (0) ;
mysql> select * from uday where count != 0 ;
+------+-------+
| id   | count |
+------+-------+
|    1 |     1 | 
|    2 |     2 | 
+------+-------+
2 rows in set (0.00 sec)

第四条记录怎么样...?它在结果中不可见。NULL 不是 0 RIGHT...?

请忽略它是否看起来很愚蠢,因为我在编码部分甚至没有竞争力。

4

1 回答 1

3
col1 not in (1,2,null)

是以下的简写:

col1 <> 1 and col1 <> 2 and col1 <> null

在 SQL 的三值逻辑中,col1 <> null返回unknown. 并且true and true and unknown还返回unknown。由于where仅接受true,而不是,因此从结果集中过滤掉unknown带有的行。null

于 2012-04-05T11:11:35.093 回答