文章目录[隐藏]
# rename rename table 旧表名 to 新表名; rename table my_table to new_table; # alter alter table 旧表名 rename [as] 新表名 alter table mytable rename as new_table;