Your question is SQL for Recent Hires. Start with the requirements and the two tables on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Jones Lang LaSalle wants a current hiring report for employees who joined within the previous six months. Write a PostgreSQL query using each employee's hire_date, joining the employee record to its JLL office.
Assume the query runs on 2026-08-29. The six-month boundary is inclusive, so employees hired on 2026-02-28 should be included.
| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| full_name | VARCHAR(100) | Employee's full name |
| job_title | VARCHAR(100) | Employee's job title |
| hire_date | DATE | Date the employee joined JLL |
| office_id | INT | References jll_offices.office_id |
| Column | Type | Description |
|---|---|---|
| office_idPK | INT | Unique JLL office identifier |
| office_name | VARCHAR(100) | JLL office name |
| city | VARCHAR(80) | City containing the office |