标签:alter mod drop mic -- 修改表 oat mamicode 表名
--修改表名
alter table student rename teacher
--修改数据类型
alter table student modify column score int
--修改列名和数据类型
alter table student change column name sname varchar(250)
--增加列
alter table student add column score FLOAT
alter table student add columns(salary FLOAT,grade FLOAT)--有问题
--删除列
alter table teacher drop column salary
标签:alter mod drop mic -- 修改表 oat mamicode 表名
原文地址:https://www.cnblogs.com/hapyygril/p/11073298.html