bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL IS NOT NULL Keyword

Concept visual

SQL IS NOT NULL Keyword

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

IS NOT NULL Keyword

Previous

❮ SQL Keywords

Next

Is Not Null

The IS NOT NULL

Formula

command is used to test for non - empty values (NOT NULL values).

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

Example

SELECT CustomerName, ContactName, Address

FROM Customers

WHERE Address

IS NOT NULL;

Previous

❮ SQL Keywords

Next

Previous

SQL IS NULL Keyword

Next

SQL JOIN Keyword