English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The IS NULL command is used to test for null values (NULL values).
The following SQL lists the "Address" Customers with NULL values in the field:
SELECT CustomerName, ContactName, Address FROM Customers WHERE Address IS NULL;
Note: NULL values are different from zero values or fields containing spaces. Fields with NULL values are fields left blank during the record creation process!
Hint:Always use IS NULL to find NULL values.