mysql 修改表名

//重命名表
rename table table1 to table2;
//重命名多个表
rename table table1 to table2,table3 to table4,table5 to table6;

原文地址:https://www.cnblogs.com/sea-stream/p/11300474.html