「MariaDB」renameでテーブル名を変更する
環境
MariaDB 10.6.4
Windows 10 64bit
書式
RENAME TABLE 元のテーブル名 TO 新しいテーブル名;
renameを利用してテーブル名を変更します。
使用例1
1.テーブル「user」を「user_new」テーブルに変更します。
MariaDB [testdb]> rename table user to user_new; Query OK, 0 rows affected (0.547 sec)
使用例2
2.複数のテーブルを変更します
MariaDB [testdb]> RENAME TABLE testa to testta_new,testb to testb_new; Query OK, 0 rows affected (0.442 sec)