The views and opinions expressed all for my own,only for study and test, not reflect the views of Any Company and its affiliates.
分类:
2008-12-22 16:07:33
alter table tablename add (column datatype [default value][null/not null],….); alter table tablename modify (column datatype [default value][null/not null],….); alter table tablename drop (column); 这里分别是使用alter table 来增加、删除和修改一个列。 下面是具体的例子: alter table test1 alter table test1 alter table test1 以上分别建立一个表,增加,更改,删除一个列。其中需要注意的是如果某一列中已经存在值,如果你要修改的为比这些值还要窄的列宽这样将会出现一个错误。 例如前面如果我们插入一个值 然后曾修改列: alter table test1 |