1811. Find Interview Candidates
Description
+--------------+------+
| Column Name | Type |
+--------------+------+
| contest\_id | int |
| gold\_medal | int |
| silver\_medal | int |
| bronze\_medal | int |
+--------------+------+
contest\_id is the primary key for this table.
This table contains the LeetCode contest ID and the user IDs of the gold, silver, and bronze medalists.
It is guaranteed that any consecutive contests have consecutive IDs and that no ID is skipped.+-------------+---------+
| Column Name | Type |
+-------------+---------+
| user\_id | int |
| mail | varchar |
| name | varchar |
+-------------+---------+
user\_id is the primary key for this table.
This table contains information about the users.ac
Last updated