Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
LeetCode SQL Practice
00:00
5 left

LeetCode SQL Practice

EasySQL · PostgreSQL

Problem

Business Context

KPIT's Connected Engineering portal receives email addresses from employees and external collaborators. Different address formats can refer to the same mailbox, so reporting must count each valid destination only once.

Task

Write a PostgreSQL query that calculates the number of unique normalized email addresses in portal_emails.

Requirements

  1. Remove every period from the local part before the @ symbol.
  2. Ignore the plus suffix in the local part, including the + character and everything after it.
  3. Count each normalized email address once and exclude rows where email is NULL.

Schema

portal_emails
ColumnTypeDescription
email_idPKINTUnique identifier for the submitted email row
emailVARCHAR(255)Submitted email address
Tablesportal_emails
Interviewer

Your question is LeetCode SQL Practice. 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.