Write a SQL query to find the monthly active users who signed up in the last 90 days and have performed a specific event more than five times.
Assume the specific event is docker_desktop_download. Use the current date to determine the 90-day signup window.
activity_month and active_users.activity_month ascending.| Column | Type | Description |
|---|---|---|
| user_idPK | INT | Unique user identifier |
| VARCHAR(255) | User email address | |
| signup_date | DATE | Date the user signed up |
| Column | Type | Description |
|---|---|---|
| event_idPK | INT | Unique event identifier |
| user_id | INT | User associated with the event |
| event_name | VARCHAR(100) | Name of the recorded event |
| event_at | TIMESTAMP | Timestamp when the event occurred |