修改表结构
Posted nyfz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改表结构相关的知识,希望对你有一定的参考价值。
1.添加字段
alter table <基本表名> add <列名> <类型>
alter table s add age varchar(30)
2.删除字段
alter table <基本表名> drop <列名> [cascade|restrict]
alter table s drop age cascade
3.修改字段
alter table <基本表名> modify <列名> <类型>、
alter table s modify age char(6)
4.索引的创建
create [unique] index <索引名> on <基本表名> (<列名序列>) //unique 唯一的
carate unique index s_index on s (sid asc,cid desc);
5.索引的撤消
drop index <索引名>
drop index s_index,sc_index
以上是关于修改表结构的主要内容,如果未能解决你的问题,请参考以下文章
在线修改大表结构pt-online-schema-change