天天看点

改数据库表结构类型两种方法

alter table user change password password varchar(128) not null;

alter table user modify column   password varchar(128) not null;

i