本篇内容主要讲解“Oracle nvarchar2错误的问题分析及解决方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Oracle nvarchar2错误的问题分析及解决方法”吧!
Oracle nvarchar2错误
问题:
使用substr函数截取指定字符串时,取出4位字符 年(例如2019),结果只取出3位(例如201);
问题原因:
字符类型nvarchar2
解决方案:
通过TRANSLATE函数将nvarchar2转换成varchar2。
问题重现:
---1 创建测试数据
create table t1(id number,t_format nvarchar2(100),t_name varchar2(100));
insert into t1 values(1,'abcde2019xxx0707uuu','abcde2019xxx0707uuu');
commit;
---2 通过substr函数截取年月日
select id,
t_format,
t_name,
length(t_format),
length(t_name),
substr(t_format, 6, 4),
substr(t_format, 13, 4),
substr(t_name, 6, 4),
substr(t_name, 13, 4)
from t1;
select id,
t_format,
t_name,
substr(t_format, 6, 5),
substr(t_format, 13, 5),
substr(t_name, 6, 4),
substr(t_name, 13, 4)
from t1;
---3 通过TRANSLATE函数将nvarchar2转换成varchar2
select id,
t_format,
t_name,
substr(utl_raw.cast_to_varchar2(utl_raw.cast_to_raw(Translate(t_format USING CHAR_CS))),6,4),
substr(utl_raw.cast_to_varchar2(utl_raw.cast_to_raw(Translate(t_format USING CHAR_CS))),13,4),
substr(t_name, 6, 4),
substr(t_name, 13, 4)
from t1;
到此,相信大家对“Oracle nvarchar2错误的问题分析及解决方法”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。