有数据情况下的字段属性改造
作者:
why_not_ | 来源:发表于
2020-07-24 15:10 被阅读0次--记一次字段属性改造 表内有数据不可以直接 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;
本文标题:有数据情况下的字段属性改造
本文链接:https://www.haomeiwen.com/subject/aowjlktx.html
网友评论