标签:restrict str dex rate res char cascade add 删除
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
标签:restrict str dex rate res char cascade add 删除
原文地址:https://www.cnblogs.com/nyfz/p/9268935.html