mysql rename

1、表名:1)alter table old_name rename to new_name;2)rename table old_name to new_name;

2、字段:alter table table_name change old_field new_field constract(类型,主键等)

原文地址:https://www.cnblogs.com/zzm-blog/p/11096337.html