bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL IS NOT NULL Keyword

Is Not Null

The IS NOT NULL 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 IS NULL Keyword

Next

SQL JOIN Keyword