修改列名: alter table 表 change 老列名 新列名 修改列类型: alter table 表 modify 列 列类型 删除某一列: alter table 表名 drop 列名 添加列: alter table 表名 add 列名 列类型 修改表名: alter table 表名 rename to 新表名

修改列名: alter table 表 change 老列名 新列名 修改列类型: alter table 表 modify 列 列类型 删除某一列: alter table 表名 drop 列名 添加列: alter table 表名 add 列名 列类型 修改表名: alter table 表名 rename to 新表名