Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Detect Duplicate Clickstream Events
00:00
5 left

SQL Detect Duplicate Clickstream Events

MediumSQL · PostgreSQL

Problem

Write a query to detect duplicate events in a clickstream log and return only the earliest timestamp for each unique session.

Treat rows with the same non-null session_id and event_name as duplicate events. Return sessions containing at least one duplicate event group, with the earliest timestamp across all events in each affected session.

Output

  1. One row per affected session, with columns session_id and earliest_timestamp
  2. Exclude null session IDs and duplicate groups with null event names
  3. Order by session_id ascending

Schema

clickstream_events
ColumnTypeDescription
event_idPKINTUnique identifier for the clickstream event
session_idVARCHAR(50)Identifier for the user session
event_nameVARCHAR(100)Name of the clickstream event
event_timestampTIMESTAMPTimestamp when the event occurred
Tablesclickstream_events
Interviewer

Your question is SQL Detect Duplicate Clickstream Events. 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.