1633. Percentage of Users Attended a Contest
Description
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| user\_id | int |
| user\_name | varchar |
+-------------+---------+
user\_id is the primary key for this table.
Each row of this table contains the name and the id of a user.+-------------+---------+
| Column Name | Type |
+-------------+---------+
| contest\_id | int |
| user\_id | int |
+-------------+---------+
(contest\_id, user\_id) is the primary key for this table.
Each row of this table contains the id of a user and the contest they registered into.ac
Last updated