現在、userテーブルとmessageテーブルの二つのテーブルがあるdatabase_oneというデータベースがあるとする。
このデータベースの名前を、database_newに変更したい。
#1.新しいデータベースを作る
create database database_new;
#2.テーブルごとに改名する
今回はuserとmessageテーブルのみなので二回行う。
rename table database_one.user to database_new.user;
rename table database_one.message to database_new.message;