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 ;
除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址:https://tangjiusheng.cn/it/620.html
原文地址:https://tangjiusheng.cn/it/620.html