使用表函数切割字符串

使用表函数切割字符串,第1张

概述使用表函数切割字符串

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

CREATE OR REPLACE TYPE table_userID is table of varchar2(100); create or replace function get_userID_tab(v_str in varchar2) return table_userID pipelined as v_new_str varchar2(4000); begin   if nvl(v_str,null) is not  null then     v_new_str:=v_str;     while 1=1 loop       if instr(v_new_str,',')=0 then         pipe row(to_number(v_new_str));         exit;       else         pipe row(to_number(substr(v_new_str,1,instr(v_new_str,')-1)));         v_new_str:=substr(v_new_str,')+1);       end if;     end loop;   end if;   return; end; 测试: select * from table(get_userID_tab('16,17,18,19,20')); 结果: 16 17 18 19 20 

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的使用表函数切割字符串全部内容,希望文章能够帮你解决使用表函数切割字符串所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://www.outofmemory.cn/sjk/1165095.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存