标签:varchar rename test code char alter strong 重命名 arch
-- 修改表名
alter table test rename as tttt
-- 怎加表的字段
alter table tttt add age int(11)
-- 修改表的字段(重命名,修改约束)
alter table tttt modify age varchar(11) -- 修改约束
ALTER TABLE tttt change age age1 int(11) -- 字段重命名
-- 删除表的字段
alter table tttt drop age1
-- 删除表
drop table if exists tttt
注意点:
标签:varchar rename test code char alter strong 重命名 arch
原文地址:https://www.cnblogs.com/saxonsong/p/14767111.html