首页 > 数据库 > 文库 > 正文

命令更改表框架添加 删除 修改字段 调整字段顺序

2022-07-15 12:02:25
字体:
来源:转载
供稿:网友
  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 table_name DROP field_name;

(编辑:错新网)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选