Given a table of candidate applications with application_date, status, and region, write a SQL query to find the conversion rate from application to hire by month and region. Use the candidate_applications table. Treat applications with status = 'hired' as hires and exclude rows without an application date.
month, region, application_count, hire_count, and conversion_rate, where conversion_rate is the hire percentage rounded to two decimal places.| Column | Type | Description |
|---|---|---|
| application_idPK | INT | Unique identifier for the application |
| application_date | DATE | Date the candidate submitted the application |
| status | VARCHAR(30) | Current application status |
| region | VARCHAR(50) | Candidate application region |