Given a database of user video interactions, write a SQL query to calculate the month-over-month retention rate of active creators.
Use the creators and video_interactions tables. A creator is active in a month when they have at least one recorded interaction during that month.
month_start, previous_month_active_creators, retained_creators, and retention_rate.retained_creators.month_start ascending. Return retention_rate as a percentage rounded to two decimal places.| Column | Type | Description |
|---|---|---|
| creator_idPK | INT | Unique creator identifier |
| creator_name | VARCHAR(100) | Creator display name |
| Column | Type | Description |
|---|---|---|
| interaction_idPK | INT | Unique interaction identifier |
| creator_id | INT | Creator associated with the interaction |
| interaction_at | TIMESTAMP | Timestamp when the interaction occurred |