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

Detect Duplicate Device Logs

MediumSQL · PostgreSQL

Problem

Write a SQL query to find duplicate records in a database table containing Axon device logs.

Treat records with the same device_id, event_type, logged_at, and status as duplicates. Exclude the unique log_id from duplicate matching.

Output

  1. One row per duplicated record signature
  2. Include device_id, event_type, logged_at, status, and duplicate_count
  3. Include only signatures occurring more than once
  4. Order by device_id, event_type, logged_at, and status ascending, with NULL statuses first

Schema

axon_device_logs
ColumnTypeDescription
log_idPKINTEGERUnique identifier for the log row
device_idVARCHAR(20)Axon device identifier
event_typeVARCHAR(40)Type of device event
logged_atTIMESTAMPTZTimestamp when the event was logged
statusVARCHAR(20)Processing status of the log event
Tablesaxon_device_logs
Interviewer

Your question is Detect Duplicate Device Logs. 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.