Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Detect Duplicate Registrations
00:00
5 left

Detect Duplicate Registrations

HardSQL · PostgreSQL

Problem

Write a query to identify duplicate user registrations by analyzing timestamps and email variations at Credit Karma. Treat emails as equivalent when comparison is case-insensitive, surrounding whitespace is ignored, periods are removed from the local part, and plus-tags are removed. A registration is a duplicate when the previous equivalent registration occurred within 24 hours.

Output

  1. One row per duplicate registration, including registration_id, user_id, email, registered_at, previous_registration_id, and hours_since_previous
  2. Exclude malformed, blank, or NULL emails and registrations without a qualifying previous registration
  3. Order by normalized email, registered_at, and registration_id

Schema

user_registrations
ColumnTypeDescription
registration_idPKINTUnique registration identifier
user_idINTIdentifier assigned to the registered user
emailVARCHAR(255)Email supplied during registration
registered_atTIMESTAMPTZTimestamp when the registration was created
Tablesuser_registrations
Interviewer

Your question is Detect Duplicate Registrations. Start with the requirements and the one table in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.