top of page
Toby Geeson | Data Analyst
Introduction
This SQL data cleaning project employed queries to standardise the date format, fill NULL values in the PropertyAddress column, split the Address column, alter 'Y' and 'N' to 'Yes' and 'No' in a field, remove duplicates based on specified fields, and delete unrequired columns. It was necessary to do self-joins, update values, add new columns, apply conditional updates, and make use of Common Table Expressions. Overall, the procedure worked effectively.
In Summary:
-
Standardise Date Format
-
Populate Property Address data
-
Breaking out Address into Individual Columns (Address, City, State)
-
Change Y and N to Yes and No in "Sold as Vacant" field
-
Removing Duplicates
-
Ordering data
-
Deleting Unused Columns
Step by Step:



Raw Nashville Housing Data - Excel file: 19 columns, 772639 rows. uncleaned.







bottom of page