LinkedIn wants to send automated "Congratulations on 5 years!" notifications to users. To qualify, a user must have started their current position exactly 5 years ago relative to the current month.
Write an SQL query to find all users celebrating their 5th work anniversary in February 2026.
| user_id(INTEGER) | full_name(VARCHAR) | start_date(DATE) |
|---|---|---|
| 1 | Alice Smith | 2021-02-15 |
| 2 | Bob Jones | 2021-02-01 |
| 3 | Charlie Brown | 2021-03-01 |
| 4 | David Miller | 2020-02-10 |
| 5 | Eve Adams | 2021-02-28 |
| 6 | Frank White | 2022-02-11 |
| user_id(INTEGER) | full_name(VARCHAR) | start_date(DATE) |
|---|---|---|
| 2 | Bob Jones | 2021-02-01 |
| 1 | Alice Smith | 2021-02-15 |
| 5 | Eve Adams | 2021-02-28 |