码迷,mamicode.com
首页 > 其他好文 > 详细

修改表中列

时间:2018-11-27 19:20:53      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:char   modify   ble   name   not   类型   加一列   add   alt   

修改列名

alter table 表名 rename column 旧列名 to 新列名;

修改列类型

alter table 表名 modify (列名varchar(255));

删除表某一列

alter table 表名 drop column 列名

给表增加一列

alter table 表名 add 列名 类型 default 值 < not null>;

修改表中列

标签:char   modify   ble   name   not   类型   加一列   add   alt   

原文地址:https://www.cnblogs.com/jwdd/p/10027772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!