Write a SQL query to find the top five most frequently used workspaces.
Treat a workspace as used when it has a confirmed reservation. Return the five workspaces with the highest confirmed reservation counts, including a workspace with zero confirmed reservations when necessary to complete the top five.
workspace_id, workspace_name, and confirmed_reservation_countworkspace_id ascending to break ties| Column | Type | Description |
|---|---|---|
| workspace_idPK | INT | Unique identifier for a WeWork workspace |
| workspace_name | VARCHAR(100) | Display name of the workspace |
| Column | Type | Description |
|---|---|---|
| reservation_idPK | INT | Unique reservation identifier |
| workspace_id | INT | Workspace associated with the reservation |
| status | VARCHAR(20) | Reservation status |