本篇内容主要讲解“oracle nvarchar2错误的问题分析及解决方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Oracle nvarchar2错误的问
本篇内容主要讲解“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错误的问题分析及解决方法”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
--结束END--
本文标题: Oracle nvarchar2错误的问题分析及解决方法
本文链接: https://lsjlt.com/news/60220.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0