Dell Technologies uses Dell APEX usage analytics to evaluate engagement across customer signup cohorts. Write a PostgreSQL query that creates a daily user activity series for a fixed reporting period, calculates each user's 7-day rolling average, and ranks users within their cohort for each day.
2025-02-01 through 2025-02-05 as the reporting period.cohort_month, activity_date, user_id, rolling_avg_units, and cohort_rank, ordered by cohort, date, and rank.| Column | Type | Description |
|---|---|---|
| user_idPK | INTEGER | Unique APEX user identifier |
| signup_date | DATE | Date the user joined Dell APEX |
| region | VARCHAR(30) | Customer operating region |
| Column | Type | Description |
|---|---|---|
| event_idPK | INTEGER | Unique usage event identifier |
| user_id | INTEGER | References apex_users.user_id |
| event_date | DATE | Date of the usage event |
| units_used | INTEGER | APEX capacity units consumed in the event |