首页 > 其他 > 详细

varchar2长度不够,需修改字段类型为clob

时间:2019-08-31 13:07:03      阅读:102      评论:0      收藏:0      [点我收藏+]
本来该字段使用varchar2(4000),但还是长度不够,需要修改字段类型为clob
1.开始尝试直接把varchar2修改为clob
alter table coupontype modify USE_STORE_CODE clob;

提示:数据类型变更无效

2.先新建clob类型的字段,把原字段的值插入到新建字段中,然后删除原字段,重命名新字段
--
--1.新建clob类型的字段
alter table coupontype add use_store_code_temp clob;
--2.把原字段的值插入到新建字段中
update coupontype set use_store_code_temp = use_store_code;
--3.删除原字段
alter table coupontype drop column use_store_code;
--4.新字段重命名
alter table coupontype rename column use_store_code_temp to use_store_code;

varchar2长度不够,需修改字段类型为clob

原文:https://www.cnblogs.com/TSHHAOLIHAI/p/11438184.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!