Session Ready
Exercise

Removing missing values

It is common to find missing values in your data. SQL Server represents missing values with NULL.

IS NULL and IS NOT NULL enable you to select or remove the rows where missing values are represented by NULL.

The airport_city column of the airports table has some NULL values. Try to find them!

Instructions 1/2
undefined XP
  • 1
    • Use IS NOT NULL to return all the rows from the airports table where airport_city is not missing.
    • 2
      • Now, use IS NULL to return all the rows from the airports table where airport_city is missing.