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 Alter Table Statement Exercises: Rename the table countries to country_new

MySQL Alter Table Statement: Exercise-1 with Solution

Write a SQL statement to rename the table countries to country_new.

Here is the list of tables.

+---------------+
| Tables_in_hrr |
+---------------+
| countries     |
| departments   |
| dup_countries |
| employees     |
| jobs          |
+---------------+

Code:

ALTER TABLE countries RENAME country_new;

Let execute the above code in MySQL 5.6 command prompt

Now, after execute the command see the list of tables.

+---------------+
| Tables_in_hrr |
+---------------+
| country_new   |
| departments   |
| dup_countries |
| employees     |
| jobs          |
+---------------+

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

Previous: MySQL Alter Table
Next: Write a SQL statement to add a column region_id to the table locations.

What is the difficulty level of this exercise?