alter table t add c_copy clob;
update t set c_copy=c;
commit;
alter table t drop column c;
alter table t rename column c_copy to c;
commit;
oracle varchar 转换clob
最新推荐文章于 2024-06-13 15:48:30 发布
alter table t add c_copy clob;
update t set c_copy=c;
commit;
alter table t drop column c;
alter table t rename column c_copy to c;
commit;