English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Usage and Examples of SQL IS NOT NULL Keyword

SQL Keyword Reference

IS NOT NULL

The IS NOT NULL command is used to test for non-null values (NOT NULL values).

The following SQL lists all customers who have a value in the "Address" field:

SELECT CustomerName, ContactName, Address
FROM Customers
WHERE Address IS NOT NULL;

SQL Keyword Reference