全部博文(80)
分类: Oracle
2011-02-16 11:25:02
Oracle 字符串连接单引号:
1. 首尾单引号为字符串识别标识,不做转译用
2. 首尾单引号里面如果出现的单引号,并且有多个,则相连两个单引号转译为一个字符串单引号
3. 单引号一定成对出现,否者这个字符串出错,因为字符串不知道哪个单引号负责结束。
select to_char('aaa')from dual;
select '' || to_char('aaa') || ''from dual;
select '''' || to_char('aaa') || '''' from dual;
select '''''' || to_char('aaa') || '''''' from dual;
select '''''''' || to_char('aaa') || '''''''' from dual;
select ' '' ' ||' ' || ' '' ' || to_char('aaa') || ' '' '' ' from dual;
chinaunix网友2011-03-06 09:16:37
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com