alter table
Posted hapyygril
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了alter table相关的知识,希望对你有一定的参考价值。
--修改表名
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 table的主要内容,如果未能解决你的问题,请参考以下文章
MySQL:ALTERing a Huge MySQL Table - 对一个超大表做alter调整
如何用oracle里面的alter table语句去添加一个列约束