alter

更改表字段类型
alter table 表名 modify 字段 改后的字段类型

更改表名
alter table 表名 rename to 表名2

加入表字段
alter table 表名 add 字段 类型
                   (字段1 类型1,字段2 类型2)
删除表字段
alter table 表名 drop column 字段

更改表字段名
alter table 表名 rename column 字段 to 字段2

加入一个分区
alter table tb_kr_voice_summary_01_day add partition DATA_20110707 values ('20110707');

更改表空间名称
alter  tablespace XXX rename to XXXX;

原文地址:https://www.cnblogs.com/wgwyanfs/p/6813155.html