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.
category_name and monthly_recurring_revenue.| Column | Type | Description |
|---|---|---|
| category_idPK | INT | Unique domain registration category identifier |
| category_name | VARCHAR(50) | Domain category name such as .com or .org |
| is_active | BOOLEAN | Whether the category is currently active |
| Column | Type | Description |
|---|---|---|
| revenue_idPK | INT | Unique monthly revenue record identifier |
| category_id | INT | Referenced domain registration category |
| billing_month | DATE | First day of the month represented by the record |
| mrr | NUMERIC(12,2) | Monthly recurring revenue amount |
| revenue_status | VARCHAR(20) | Revenue record status |