RENAMEtabletestingtotest;QueryOK,0rowsaffected(0.17sec)mysql>Select*fromtesting;ERROR1146(42S02):Table'query.testing'do"/> RENAMEtabletestingtotest;QueryOK,0rowsaffected(0.17sec)mysql>Select*fromtesting;ERROR1146(42S02):Table'query.testing'do">

Home  >  Article  >  Database  >  How can we change the name of a MySQL table?

How can we change the name of a MySQL table?

WBOY
WBOYforward
2023-09-02 11:57:031202browse

我们如何更改 MySQL 表的名称?

The RENAME command is used to change the name of a MySQL table. Its syntax is as follows -

RENAME table old_tablename to new_tablename2;

Example

In the following example, we have renamed the table "testing" to "test".

mysql> RENAME table testing to test;
Query OK, 0 rows affected (0.17 sec)

mysql> Select * from testing;
ERROR 1146 (42S02): Table 'query.testing' doesn't exist

mysql> Select * from test;
+-----+---------+
| id1 | Name    |
+-----+---------+
| 1   | Harshit |
| 2   | Lovkesh |
| 3   | MOHIT   |
| 4   | MOHIT   |
+-----+---------+

4 rows in set (0.02 sec)

The above is the detailed content of How can we change the name of a MySQL table?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete