LinkedIn data scientists track high-engagement users to improve content recommendations. A user is considered "highly engaged" on a particular day if they view more than one unique article on that same day.
Write an SQL query to find all such users.
| article_id(INTEGER) | author_id(INTEGER) | viewer_id(INTEGER) | view_date(DATE) |
|---|---|---|---|
| 1 | 3 | 5 | 2026-02-01 |
| 2 | 3 | 5 | 2026-02-01 |
| 1 | 3 | 6 | 2026-02-02 |
| 1 | 3 | 6 | 2026-02-02 |
| 4 | 7 | 6 | 2026-02-03 |
| 3 | 4 | 4 | 2026-02-01 |
| article_id(INTEGER) | title(VARCHAR) | category(VARCHAR) |
|---|---|---|
| 1 | SQL Basics | Tech |
| 2 | Data Science 101 | Tech |
| 3 | LinkedIn Tips | Career |
| viewer_id(INTEGER) | membership_type(VARCHAR) |
|---|---|
| 4 | Free |
| 5 | Premium |
| 6 | Premium |
| id(INTEGER) |
|---|
| 5 |