Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Domain Categories by MRR
00:00
5 left

Top Domain Categories by MRR

EasySQL · PostgreSQL

Problem

Write a SQL query to find the top three highest-performing domain registration categories based on monthly recurring revenue at GoDaddy.

Use the provided registration category and monthly revenue data for January 2025. Include only active categories and active recurring revenue records.

Output

  1. One row per domain registration category, with category_name and monthly_recurring_revenue.
  2. Return the three highest totals, ordered by revenue descending and category name ascending to break ties.

Schema

domain_registration_categories
ColumnTypeDescription
category_idPKINTUnique domain registration category identifier
category_nameVARCHAR(50)Domain category name such as .com or .org
is_activeBOOLEANWhether the category is currently active
monthly_domain_revenue
ColumnTypeDescription
revenue_idPKINTUnique monthly revenue record identifier
category_idINTReferenced domain registration category
billing_monthDATEFirst day of the month represented by the record
mrrNUMERIC(12,2)Monthly recurring revenue amount
revenue_statusVARCHAR(20)Revenue record status
Tablesdomain_registration_categoriesmonthly_domain_revenue
Interviewer

Your question is Top Domain Categories by MRR. 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.