Create a report showing the total revenue per city for the years 2023, 2024, and 2025.
| booking_id(INTEGER) | listing_id(INTEGER) | num_nights(INTEGER) | booking_date(DATE) |
|---|---|---|---|
| 1 | 101 | 3 | 2023-05-15 |
| 2 | 101 | 2 | 2024-06-10 |
| 3 | 102 | 5 | 2025-01-01 |
| listing_id(INTEGER) | city(VARCHAR) | price_per_night(DECIMAL) |
|---|---|---|
| 101 | Paris | 200 |
| 102 | New York | 300 |
| city(VARCHAR) | region(VARCHAR) |
|---|---|
| Paris | Europe |
| city(VARCHAR) | revenue_2023(DECIMAL) | revenue_2024(DECIMAL) | revenue_2025(DECIMAL) |
|---|---|---|---|
| New York | 0 | 0 | 1500 |
| Paris | 600 | 400 | 0 |