Write a SQL query to analyze business performance at Tripadvisor by joining bookings, users, and support tickets, then aggregate key metrics by month and region. Include bookings and users with matching records, while preserving regions that have no support tickets. Use the booking month for monthly reporting and count each support ticket once.
Output
- One row per booking month and region, ordered by month ascending and region ascending.
- Columns:
month, region, booking_count, total_booking_value, unique_users, support_ticket_count, and users_with_tickets.
- Include booking months and regions with zero support tickets.