日期:2014-05-16 浏览次数:20588 次
zhuan:http://blog.csdn.net/lqh4188/article/details/7498354
在使用Union all连接时,若A集合中某列为nvarchar2或nvarchar类型,而B集合中无此列,用‘ ’ 来代替是会报字符集不匹配,解决方法有两种,见下面的示例
例:
?
select '中国','China',cast('中国' as nvarchar2(10)) T from dual union all select '美国','USA','' from dual;
如上,T的类型为nvarchar2,长度为10,如果直接这样查询,就会报字符集不匹配,那么怎么来处理呢,可通过两种方法来解决
?
1.to_char()
select '中国','China',to_char(cast('中国' as nvarchar2(10))) T from dual union all select '美国','USA','' from dual;
2. 用N' ',N''是将‘’转换为Unicode编码
?
?
select '中国','China',cast('中国' as nvarchar2(10)) T from dual union all select '美国','USA',N'' from dual;
这样就可以解决字符集不匹配问题了
-----------------------
oracle wm_concat(column)函数使我们经常会使用到的,下面就教您如何使用oracle wm_concat(column)函数实现字段合并,如果您对oracle wm_concat(column)函数使用方面感兴趣的话,不妨一看。
shopping:
-----------------------------------------
u_id?????? goods??????????? num