Convoy's Carrier Dashboard tracks how quickly new carriers join the platform. Write a PostgreSQL query that calculates annual carrier sign-ups and their year-over-year growth rate.
active or pending.NULL for the first year or when the prior-year count is zero.| Column | Type | Description |
|---|---|---|
| carrier_idPK | INT | Unique carrier identifier |
| account_status | VARCHAR(20) | Current carrier account status |
| created_at | DATE | Date the carrier account was created |
| Column | Type | Description |
|---|---|---|
| signup_idPK | INT | Unique signup event identifier |
| carrier_id | INT | Carrier associated with the signup |
| signed_up_at | TIMESTAMP | Timestamp of the signup event |
| acquisition_channel | VARCHAR(30) | Signup acquisition source |