|
alter table tb_name add [column] col_definition [first | after some_column];添加新字段
alter table tb_name add index [index_name] (index_col_name,...);
添加索引
alter table tb_name drop index index_name;
删除索引
alter table tb_name add primary key (index_col_name,...);
添加主键
alter table tb_name drop primary key;
删除主键
alter table tb_name add unique [index_name] (index_col_name,...);
添加唯一索引
alter table tb_name alter [column] col_name {set default default_value | drop default};
修改或删除字段默认值
alter table tb_name modify [column] create_definition;
修改字段定义
alter table tb_name change [column] old_col_name create_definition;
修改字段名、字段定义
alter table tb_name drop [column] col_name;
删除字段
alter table tb_name rename [as] new_tb_name;
修改表名
rename table tb_name1 to tb_name2;
修改表名
|
|