1783. Grand Slam Titles
Description
+----------------+---------+
| Column Name | Type |
+----------------+---------+
| player\_id | int |
| player\_name | varchar |
+----------------+---------+
player\_id is the primary key for this table.
Each row in this table contains the name and the ID of a tennis player.
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| year | int |
| Wimbledon | int |
| Fr\_open | int |
| US\_open | int |
| Au\_open | int |
+---------------+---------+
year is the primary key for this table.
Each row of this table containts the IDs of the players who won one each tennis tournament of the grand slam.ac
Last updated