SQL IS NULL 关键字
IS NULL
The IS NULL
command is used to test for empty values (NULL values).
The following SQL lists all customers with a NULL value in the "Address" field
注意: NULL 值不同于零值或包含空格的字段。具有 NULL 值的字段是在记录创建期间留空的字段!
提示: 始终使用 IS NULL 来查找 NULL 值。