Amazon Prime Now Operations needs to identify delivery routes with the longest average cycle time. Write a PostgreSQL query that ranks the five slowest routes using completed deliveries during January 2025.
delivered_at and picked_up_at.status = 'DELIVERED' and timestamps within January 2025.| Column | Type | Description |
|---|---|---|
| route_idPK | INT | Unique Prime Now route identifier |
| route_name | VARCHAR(80) | Operational route name |
| service_zone | VARCHAR(40) | Geographic service zone |
| Column | Type | Description |
|---|---|---|
| delivery_idPK | INT | Unique delivery identifier |
| route_id | INT | Route used for the delivery |
| picked_up_at | TIMESTAMP | Timestamp when the order left the station |
| delivered_at | TIMESTAMP | Timestamp when the order reached the customer |
| status | VARCHAR(20) | Delivery lifecycle status |