【MySQL】テーブル名を変更する。

例)
postテーブルをcommentに名前を変える。

rename table post to comment;

羅列すると順番に処理される。

rename table
	one to two,
	three to four,
	five to six;

2つのデータベースが同じファイルシステム上にある場合に限りデータベース間のテーブル移動にも使用可。

rename table db1.table to db2.table;