Write a SQL query to find the top 5 customers by total shipment volume in the last 90 days at DHL Supply Chain.
Use the customers and shipments tables. Treat the 90-day period as beginning 90 days before the current date.
customer_id, customer_name, and total_shipment_volume.customer_id ascending to break ties.| Column | Type | Description |
|---|---|---|
| customer_idPK | INT | Unique DHL Supply Chain customer identifier |
| customer_name | VARCHAR(150) | Customer account name |
| Column | Type | Description |
|---|---|---|
| shipment_idPK | INT | Unique shipment identifier |
| customer_id | INT | Customer associated with the shipment |
| shipment_date | DATE | Date the shipment was recorded |
| shipment_volume | NUMERIC(12,2) | Shipment volume in cubic metres |