Your question is Join Tables With Date Filter. Start with the requirements and the one table 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.
ALTEN Technology USA needs a list of project events recorded in its engineering delivery tracking system during a defined reporting period. Write a PostgreSQL query that returns events from February 1, 2025 through February 28, 2025.
Use an inclusive start date and an exclusive end date so the query remains reliable if event_date is later changed from DATE to TIMESTAMP.
| Column | Type | Description |
|---|---|---|
| event_idPK | INTEGER | Unique event identifier |
| project_name | VARCHAR(100) | ALTEN Technology USA project name |
| event_date | DATE | Date when the event occurred |
| status | VARCHAR(30) | Current event status |