有数据情况下的字段属性改造

--记一次字段属性改造 表内有数据不可以直接 modify字段属性
--添加新字段
alter table oe_doctor add district_code_t varchar2(15);
--复制被替换字段数据
update oe_doctor set district_code_t = district_code;
--修改被替换字段,字段名称
ALTER table oe_doctor rename column district_code  to district_code_drop;
--新添加的字段,替换掉老字段
ALTER table oe_doctor rename column district_code_t  to district_code;
--最后删除被替换的字段
alter table oe_doctor drop column district_code_drop;

你可能感兴趣的:(有数据情况下的字段属性改造)