Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Users by Category

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Top Users by Category. Start with the requirements and the three tables on the right.

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.

Problem

HackerRank Product Analytics wants to compare user activity across challenge categories. Write a PostgreSQL query that identifies the top three users by accepted submission count in the SQL and Algorithms categories during January 2025.

Requirements

  1. Join users, submissions, and challenges using their key relationships.
  2. Count accepted submissions for each user within each requested category.
  3. Rank users separately within each category and return the top three per category.
  4. Order the output by category and rank. Break ties alphabetically by username.

Representative Data

Schema

users
ColumnTypeDescription
user_idPKINTUnique HackerRank user identifier
usernameVARCHAR(50)HackerRank username
emailVARCHAR(120)User email address
submissions
ColumnTypeDescription
submission_idPKINTUnique submission identifier
user_idINTUser who made the submission
challenge_idINTChallenge associated with the submission
statusVARCHAR(20)Submission result, such as accepted or rejected
submitted_atTIMESTAMPTime the submission was created
challenges
ColumnTypeDescription
challenge_idPKINTUnique challenge identifier
titleVARCHAR(100)Challenge title
categoryVARCHAR(50)Challenge category
Tablesuserssubmissionschallenges
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results