Identify the player(s) with the most points for every tournament.
| tournament_id(INTEGER) | name(VARCHAR) |
|---|---|
| 1 | Worlds 2025 |
| 2 | MSI 2025 |
| player_id(INTEGER) | display_name(VARCHAR) |
|---|---|
| 501 | Faker |
| 502 | Caps |
| 503 | Chovy |
| match_id(INTEGER) | tournament_id(INTEGER) | player_id(INTEGER) | points(INTEGER) |
|---|---|---|---|
| 1 | 1 | 501 | 10 |
| 2 | 1 | 501 | 15 |
| 3 | 1 | 502 | 20 |
| 4 | 2 | 503 | 30 |
| tournament_name(VARCHAR) | winner_name(VARCHAR) | total_points(INTEGER) |
|---|---|---|
| MSI 2025 | Chovy | 30 |
| Worlds 2025 | Faker | 25 |