Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top 10 Most Watched Query
00:00
5 left

Top 10 Most Watched Query

MediumSQL · PostgreSQL

Problem

Write a query to find the top 10 most watched anime series from a dataset.

Use the provided anime_series and watch_events tables. Calculate total watches per series, include series with no valid watch events, and return fewer than 10 rows only if fewer than 10 series exist.

Output

  1. One row per anime series with columns series_title and total_watches
  2. Include the 10 highest totals, treating missing or NULL watch counts as zero
  3. Order by total_watches descending, then series_title ascending for ties

Schema

anime_series
ColumnTypeDescription
series_idPKINTEGERUnique identifier for an anime series
series_titleVARCHAR(200)Anime series title
watch_events
ColumnTypeDescription
event_idPKINTEGERUnique identifier for a watch event
series_idINTEGERReferenced anime series identifier
watch_countINTEGERNumber of watches represented by the event
Tablesanime_serieswatch_events
Interviewer

Your question is Top 10 Most Watched Query. Start with the requirements and the two tables 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.