Your question is SQL Duplicate Emails. Start with the requirements and the one table on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Amazon account data may contain duplicate email addresses because of inconsistent capitalization or accidental leading and trailing spaces. Write a PostgreSQL query to identify emails associated with more than one user.
| Column | Type | Description |
|---|---|---|
| user_idPK | INTEGER | Unique Amazon user identifier |
| VARCHAR(320) | User email address | |
| created_at | TIMESTAMP | Account creation timestamp |