1. Standardizing Database Import
Data AnalystBackground
Received a CSV with messy headers like 'First Name', 'User ID#', and 'Date of Birth'.
Problem
The database requires clean, snake_case headers without special characters.
How to use
Paste the CSV, set Case Conversion to 'Snake Case', and Special Character Handling to 'Replace with Underscore'.
caseConversion: snake, specialCharHandling: replace-underscoreOutcome
Headers are converted to 'first_name', 'user_id_', and 'date_of_birth', ready for SQL import.