The election is over, and it is time to announce the winner. You are given two tables: Candidate and Vote.
Write an SQL query to find the name of the winning candidate.
| id(INTEGER) | name(VARCHAR) |
|---|---|
| 1 | Alice |
| 2 | Bob |
| 3 | Charlie |
| candidate_id(INTEGER) |
|---|
| 2 |
| 3 |
| 3 |
| 2 |
| 2 |
| region(VARCHAR) |
|---|
| North |
| name(VARCHAR) |
|---|
| Bob |