删除列
alter table 表名 drop (列名);
新加列
alter table 表名 add(列名1 VARCHAR(1024));
comment on column 表名.列名1 IS '备注';
修改列
alter table 表名 MODIFY(列名1 VARCHAR(1024));
加索引
create index 索引名 on 表名(列名1,列名2);
删除索引
drop index 索引名;
重命名列
alter table 表名 rename column 列名 to 新列名