Write a basic SQL query to join two tables (for example Users and Archives) and filter the results by a specific date range and status code.
Use the provided users and archives tables. Return matching active archives created during January 2025.
user_id, user_name, archive_id, archive_title, archived_at, and status_code.archived_at ascending, then archive_id ascending.| Column | Type | Description |
|---|---|---|
| user_idPK | INT | Unique user identifier |
| user_name | VARCHAR(100) | Display name of the user |
| VARCHAR(255) | User email address |
| Column | Type | Description |
|---|---|---|
| archive_idPK | INT | Unique archive identifier |
| user_id | INT | User associated with the archive |
| archive_title | VARCHAR(150) | Title of the archived item |
| archived_at | TIMESTAMP | Timestamp when the item was archived |
| status_code | VARCHAR(20) | Current archive status |