我们如何更改MySQL表的名称?
RENAME命令用于更改MySQL表的名称。它的语法如下-
RENAME table old_tablename to new_tablename2;
示例
在下面的示例中,我们将表“ testing”重命名为“ test”。
mysql> RENAME table testing to test;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)
以上是 我们如何更改MySQL表的名称? 的全部内容, 来源链接: utcz.com/z/321863.html