天天看点

mysql新加一列_MySql中增加一列

如果想在一个已经建好的表中添加一列,可以用诸如:

alter table TABLE_NAME add column NEW_COLUMN_NAME varchar(20) not null;

这条语句会向已有的表中加入新的一列,这一列在表的最后一列位置。如果我们希望添加在指定的一列,可以用:

alter table TABLE_NAME add column NEW_COLUMN_NAME varchar(20) not null after COLUMN_NAME;

注意,上面这个命令的意思是说添加新列到某一列后面。如果想添加到第一列的话,可以用:

alter table TABLE_NAME add column NEW_COLUMN_NAME varchar(20) not null first;

带默认值

alter table passenger_taxi_activity add column off_origin int(11) not null default 0 COMMENT '满减起步价';

alter table passenger_taxi_activity add column off_money_prob varchar(255) not null default '' comment '金额及概率,多个逗号分隔, 如10-20,20-80'