Write a SQL query using GROUP BY to transform data as described in the prompt.
Use the supplied teams and work_logs tables. Include all teams and only work logs from 2025-01-01 through 2025-03-31.
team_name, log_count, total_hours, completed_hours, and open_hoursteam_name ascending| Column | Type | Description |
|---|---|---|
| team_idPK | INT | Unique team identifier |
| team_name | VARCHAR(100) | Team name |
| Column | Type | Description |
|---|---|---|
| log_idPK | INT | Unique work log identifier |
| team_id | INT | Referenced team identifier |
| log_date | DATE | Date of the work log |
| status | VARCHAR(20) | Work log status |
| hours | NUMERIC(8,2) | Logged hours |