MySQL修改表结构--添加删除字段

MySQL修改表结构包含诸多的功能,下面介绍的MySQL修改表结构操作实现的是字段的添加及删除等,如果您对MySQL修改表结构方面感兴趣的话,不妨一看。

MySQL修改表结构--添加字段:

alter table `user_movement_log`
Add column GatewayId int not null default 0 AFTER `Regionid` (在哪个字段后面添加)

MySQL修改表结构--删除字段:

alter table `user_movement_log` drop column Gatewayid

调整字段顺序:

ALTER TABLE `user_movement_log` CHANGE `GatewayId` `GatewayId` int not null default 0 AFTER RegionID

//主键

alter table tabelname add new_field_id int(5) unsigned default 0 not null auto_increment ,add primary key (new_field_id);

//增加一个新列

alter table t2 add d timestamp;
alter table infos add ex tinyint not null default ’0′;

//删除列

alter table t2 drop column c;

//重命名列

alter table t1 change a b integer;

//改变列的类型

alter table t1 change b b bigint not null;
alter table infos change list list tinyint not null default ’0′;

//重命名表

alter table t1 rename t2;

【编辑推荐】

10大常用MySQL命令行

使用MySQL命令行修改密码

MySQL用户权限的取消

授予MySQL用户权限的命令

mysql索引比较分析

本文标题:MySQL修改表结构--添加删除字段
URL地址:http://www.shufengxianlan.com/qtweb/news20/347970.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联