Edward Jones wants to identify the strongest financial advisors in each region based on new clients acquired during 2025. Write a PostgreSQL query that includes advisors with no qualifying acquisitions and returns the top three advisors per region.
2025-01-01 through 2025-12-31.LEFT JOIN so advisors with zero new clients remain eligible.| Column | Type | Description |
|---|---|---|
| advisor_idPK | INTEGER | Unique financial advisor identifier |
| advisor_name | VARCHAR(100) | Financial advisor name |
| region | VARCHAR(50) | Edward Jones operating region |
| Column | Type | Description |
|---|---|---|
| client_idPK | INTEGER | Unique client identifier |
| advisor_id | INTEGER | Advisor assigned to the client |
| acquired_date | DATE | Date the client was acquired |