EasyOutput prediction
Filter with date comparison operators
Given this table (tasks):
| id | name | due_date |
|---|---|---|
| 1 | Alpha | 2024-01-10 |
| 2 | Beta | 2024-01-20 |
| 3 | Gamma | 2024-01-25 |
What does this query return?
SELECT name FROM tasks WHERE due_date > '2024-01-15';
← → arrow keys to navigate
Sign in to save your progress.