首页 > 其他 > 详细

?拆分与合并?函数

时间:2015-05-25 23:51:47      阅读:340      评论:0      收藏:0      [点我收藏+]

---拆分函数

1 当需要把一个字符串按某一分隔符分隔后,变为数据列,即把字符串行变为列,可以使用level关键字,例子:

 with t as  

 (select ‘a;b;c;d;e‘ as str from dual)  

 select level,  

        t.str,  

        substr(t.str, 2 * (level - 1) + 1, 1) as str_signle  

   from t  

 connect by level <= length(t.str) - length(replace(t.str, ‘;‘, ‘‘)) + 1;  

运行结果:

 技术分享

 

2、上面的写法只是适用于一般有规律的字符串行,当遇到不规则字符串行时,可以使用oracle的正则表达式函数,请看下面的例子:

  1. with t as  
  2.  (select ‘i;am;a;test;hahahhah‘ as str from dual)  
  3. select level,  
  4.        str,  
  5.        regexp_substr(t.str, ‘[^;]+‘, 1, level) str_single  
  6.   from t  
  7. connect by level <= length(t.str) - length(replace(t.str, ‘;‘, ‘‘)) + 1; 

运行结果:

技术分享

或者不使用正则表达式:

  1. with t_org as  
  2.  (select ‘I am a complicated string‘ as str from dual),  
  3. t_sep as  
  4.  (select ‘ ‘ as sep from dual),  
  5. t as  
  6.  (select t_org.str as orign_str,  
  7.          t_sep.sep || t_org.str || t_sep.sep as str  
  8.     from t_org,  
  9.          t_sep)  

10. select level,  

  1. 11.        t.orign_str,  

12. /*     instr(t.str, t_sep.sep, 1, level) as separator_postion,  

  1. 13.        instr(t.str, t_sep.sep, 1, level) + 1 as str_postion_begin,  
  2. 14.        instr(t.str, t_sep.sep, 1, level + 1) -  
  3. 15.        instr(t.str, t_sep.sep, 1, level) - 1 as str_single_len,*/  
  4. 16.        substr(t.str, instr(t.str, t_sep.sep, 1, level) + 1, instr(t.str, t_sep.sep, 1, level + 1) -  
  5. 17.                instr(t.str, t_sep.sep, 1, level) - 1) as str_signle  
  6. 18.   from t,  
  7. 19.        t_sep  

20. connect by level < length(t.str) - length(replace(t.str, t_sep.sep, ‘‘));  

运行结果:

技术分享
 

?拆分与合并?函数

原文:http://www.cnblogs.com/zhaoyuli/p/4529006.html

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