Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 713 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 713 Bytes

Data Cleaning Projects using PostgreSQL

A SQL data cleaning project using Nashville housing data.

The Following Processes I have done in this project

•Changing Y and N to Yes and No in the SoldAsVacant field and landuse field using CASE statement.

•By using a SELF JOIN, populated the PropertyAddress fields where the value is NULL and updated the table.

•Standardized date format using TO_DATE and updated the table.

•Splitting propertyaddress into individual column as propertysplitaddress, propertysplitcity using SPLIT_PART updated the table.

•Splitting owneraddress into individual column as ownersplitaddress, ownersplitcity, and ownersplitstates using SPLIT_PART updated the table .