Mysql Basic
1、在表hd_wish中添加字段time
alter table hd_wish add column time int(10) not null default 0;
2、修改字段的长度等相关信息(原来content列的长度是200,null,无默认值)
alter table hd_wish modify content varchar(255) not null default ‘‘;
2021-10-10 03:37:25
Mysql Basic
1、在表hd_wish中添加字段time
alter table hd_wish add column time int(10) not null default 0;
2、修改字段的长度等相关信息(原来content列的长度是200,null,无默认值)
alter table hd_wish modify content varchar(255) not null default ‘‘;