RENAME指令用於變更MySQL表的名稱。其語法如下 -
RENAME table old_tablename to new_tablename2;
在下面的範例中,我們將表格「testing」重新命名為「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)
以上是我們如何更改 MySQL 表的名稱?的詳細內容。更多資訊請關注PHP中文網其他相關文章!