《MysqL必读MysqL 增加修改字段类型及删除字段类型》要点:
本文介绍了MysqL必读MysqL 增加修改字段类型及删除字段类型,希望对您有用。如果有疑问,可以联系我们。
MysqL学习MysqL添加字段:
MysqL学习alter table `user_movement_log` Add column GatewayID int not null default 0 AFTER `RegionID` (在哪个字段后面添加)
MysqL学习删除字段:
MysqL学习alter table `user_movement_log` drop column GatewayID
MysqL学习调整字段顺序:
MysqL学习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;加索引 MysqL> alter table tablename change depno depno int(5) not null; MysqL> alter table tablename add index 索引名 (字段名1[,字段名2 …]); MysqL> alter table tablename add index emp_name (name);加主关键字的索引 MysqL> alter table tablename add primary key(ID);加唯一限制条件的索引 MysqL> alter table tablename add unique emp_name2(cardnumber);删除某个索引 MysqL>alter table tablename drop index emp_name;修改表:
MysqL学习增加字段:
MysqL学习MysqL> ALTER table table_name ADD fIEld_name fIEld_type;修改原字段名称及类型: MysqL> ALTER table table_name CHANGE old_fIEld_name new_fIEld_name fIEld_type;删除字段: MysqL> ALTER table table_name DROP fIEld_name;
总结 以上是内存溢出为你收集整理的Mysql必读mysql 增加修改字段类型及删除字段类型全部内容,希望文章能够帮你解决Mysql必读mysql 增加修改字段类型及删除字段类型所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)