将varchar2类型字段改成clob类型
--增加临时新字段
alter table base_temp add temp clob;
--将需要改成大字段的项内容copy到大字段中
update base_temp set temp=content;
--删除原有字段
alter table base_temp drop column content;
--将新字段名改成原字段名
alter table base_temp rename column TEMP to "CONTENT";
--将需要改成大字段的项内容copy到大字段中
update base_temp set temp=content;
--删除原有字段
alter table base_temp drop column content;
--将新字段名改成原字段名
alter table base_temp rename column TEMP to "CONTENT";