DATA CLEANING WITH SQL (pt 3)

 Checking for NULL Values.

it's important we check for NULL values across all tables and columns in our data in other to ensure the validity of our data.

We can check for Null values using the IS NULL tool.

In the video below, we check for the null values in the Property Address field using the query below:



SELECT PropertyAddress
FROM PROJ.dbo.Nash
WHERE PropertyAddress IS NULL

This returns a result that shows that we have 29 rows in the Property Address Field with Null values

Comments

Popular posts from this blog

EXPLORATORY ANALYSIS OF COVID_19 CASES AND VACCINATION IN NIGERIA