alter table preliminary_collection_repay_recorddrop index index_prc_id
ALTER TABLE people ADD COLUMN name VARCHAR(100) DEFAULT NULL COMMENT ‘姓名‘ AFTER age;
修改表 people 增加字段 name 长度100 默认为null 备注:姓名 在age字段后面;
2021-11-29 07:08:40
alter table preliminary_collection_repay_recorddrop index index_prc_id
ALTER TABLE people ADD COLUMN name VARCHAR(100) DEFAULT NULL COMMENT ‘姓名‘ AFTER age;
修改表 people 增加字段 name 长度100 默认为null 备注:姓名 在age字段后面;