Can you describe a time you had to clean a messy dataset and the specific techniques you used? Using the supplied tables, demonstrate those techniques by producing a cleaned customer record set. Exclude records with missing or invalid emails, retain the latest record for each normalized email, and preserve records without a matching account.
Output
- One row per retained customer record with
account_id, cleaned_name, cleaned_email, cleaned_phone, and account_status.
- Missing phone values remain
NULL; unmatched accounts have a NULL status.
- Order by
cleaned_email ascending.