alter table 表名 modify 字段名 类型;
alter table 表名 modify 字段名 属性名;
alter table TEST modify sbirthday not null;
 
05-15 19:33