Mysql里可直接使用rename语句更改表的名字
rename table titles_test to titles_2017
或者使用alter语句对表进行修改
alter table titles_test rename to titles_2017
ALTER TABLE 的命令用法:https://www.w3schools.com/sql/sql_alter.asp
Mysql里可直接使用rename语句更改表的名字
rename table titles_test to titles_2017
或者使用alter语句对表进行修改
alter table titles_test rename to titles_2017
ALTER TABLE 的命令用法:https://www.w3schools.com/sql/sql_alter.asp