Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

MySQL Create Table Exercises: Create the structure of a table dup_countries similar to countries

MySQL Create Tables: Exercise-3 with Solution

3. Write a SQL statement to create the structure of a table dup_countries similar to countries.

Sample Solution:

CREATE TABLE IF NOT EXISTS dup_countries
LIKE countries;

Let execute the above code in MySQL 5.6 command prompt

Here is the structure of the table:

mysql> DESC dup_countries;
+--------------+---------------+------+-----+---------+-------+
| Field        | Type          | Null | Key | Default | Extra |
+--------------+---------------+------+-----+---------+-------+
| COUNTRY_ID   | varchar(2)    | YES  |     | NULL    |       |
| COUNTRY_NAME | varchar(40)   | YES  |     | NULL    |       |
| REGION_ID    | decimal(10,0) | YES  |     | NULL    |       |
+--------------+---------------+------+-----+---------+-------+
3 rows in set (0.03 sec)

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a SQL statement to create a simple table countries including columns country_id,country_name and region_id which is already exists.
Next: Write a SQL statement to create a duplicate copy of countries table including structure and data by name dup_countries.

What is the difficulty level of this exercise?