CustomerDemographic
, CustomerAddress
, and Transactions
.customer_id
and transaction_id
columns.job_title
to NULL when it’s labeled as ‘n/a’.job_industry_category
.age
column to the CustomerDemographic
table. We calculate ages based on the DOB
and address an outlier where the customer age was exceptionally high.NewCustomerList
table by adding an age
column. This will help us better understand the age distribution of new customers.profit
column to the Transactions
table by subtracting standard_cost
from list_price
.Transactions
table with the profit quartiles and sale categories.Posted Jan 28, 2025
In this case study, we will walk through SQL queries, data cleaning, normalization, and extensive exploratory data analysis (EDA) to gain actionable knowledge.