1501. Countries You Can Safely Invest In
Description
+----------------+---------+
| Column Name | Type |
+----------------+---------+
| id | int |
| name | varchar |
| phone\_number | varchar |
+----------------+---------+
id is the primary key for this table.
Each row of this table contains the name of a person and their phone number.
Phone number will be in the form 'xxx-yyyyyyy' where xxx is the country code (3 characters) and yyyyyyy is the phone number (7 characters) where x and y are digits. Both can contain leading zeros.+----------------+---------+
| Column Name | Type |
+----------------+---------+
| name | varchar |
| country\_code | varchar |
+----------------+---------+
country\_code is the primary key for this table.
Each row of this table contains the country name and its code. country\_code will be in the form 'xxx' where x is digits.ac
Last updated