MYSQL增加字段语句(MYSQL在某个字段后加字段或在首列加字段)

MySQL数据库管理系统由瑞典的DataKonsultAB公司研发,该公司被Sun公司收购,现在Sun公司又被Oracle公司收购,因此MySQL目前属于 Oracle 旗下产品。MYSQL增加字段语句,MYSQL在某个字段后加字段:

字符型:

1、一条一条加字段:

alter table table1 add column col1 varchar(20) not null comment 'newcol' after col0;
alter table table1 add col2 varchar(20) not null comment 'newcol' after col1 ;

2、一次加多条:

ALTER TABLE table1 add col1 varchar(20) not null comment 'newcol' after col0,
add col2 varchar(20) not null comment 'newcol' after col1 ,
add col3 varchar(20) not null comment 'newcol' after col2 ;

数值型:

ALTER TABLE table1
ADD col1 tinyint(1) NOT NULL DEFAULT 0 COMMENT 'col1' after col0,
ADD col2 int(11) UNSIGNED NULL DEFAULT 0 COMMENT 'col2' after col1;

MYSQL在首列加字段:

alter table table1 add column col1 varchar(20) not null first ;

版权声明:
作者:Joker 链接:https://456787.xyz/archives/974
文章版权归作者所有,转载请注明出处。
THE END
分享
二维码
打赏
< <上一篇
下一篇>>