代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
PLSQL
】
oracle中字符串分解为数组并遍历数组插入表中
作者:
Dezai.CN
/ 发布于
2012/5/9
/
943
oracle中字符串分解为数组并遍历数组插入表中
<div> 1、定义一个自定义类型 <div class="cnblogs_code"> <pre><span style="color: rgb(0, 0, 255);">CREATE</span> <span style="color: rgb(128, 128, 128);">OR</span> <span style="color: rgb(255, 0, 255);">REPLACE</span> TYPE ty_str_split <span style="color: rgb(0, 0, 255);">IS</span> <span style="color: rgb(0, 0, 255);">TABLE</span> <span style="color: rgb(0, 0, 255);">OF</span> <span style="color: rgb(0, 0, 255);">VARCHAR2</span> (<span style="color: rgb(128, 0, 0); font-weight: bold;">4000</span>);</pre> </div> 2、定义一个函数 <div class="cnblogs_code"> <div class="cnblogs_code_toolbar"></div> <pre><span style="color: rgb(0, 0, 255);">CREATE</span> <span style="color: rgb(128, 128, 128);">OR</span> <span style="color: rgb(255, 0, 255);">REPLACE</span> <span style="color: rgb(0, 0, 255);">FUNCTION</span> fn_split (p_str <span style="color: rgb(128, 128, 128);">IN</span> <span style="color: rgb(0, 0, 255);">VARCHAR2</span>, p_delimiter <span style="color: rgb(128, 128, 128);">IN</span> <span style="color: rgb(0, 0, 255);">VARCHAR2</span><span style="color: rgb(0, 0, 0);">) </span><span style="color: rgb(0, 0, 255);">RETURN</span><span style="color: rgb(0, 0, 0);"> ty_str_split PIPELINED </span><span style="color: rgb(0, 0, 255);">IS</span><span style="color: rgb(0, 0, 0);"> j </span><span style="color: rgb(0, 0, 255);">INT</span> :<span style="color: rgb(128, 128, 128);">=</span> <span style="color: rgb(128, 0, 0); font-weight: bold;">0</span><span style="color: rgb(0, 0, 0);">; i </span><span style="color: rgb(0, 0, 255);">INT</span> :<span style="color: rgb(128, 128, 128);">=</span> <span style="color: rgb(128, 0, 0); font-weight: bold;">1</span><span style="color: rgb(0, 0, 0);">; </span><span style="color: rgb(255, 0, 255);">len</span> <span style="color: rgb(0, 0, 255);">INT</span> :<span style="color: rgb(128, 128, 128);">=</span> <span style="color: rgb(128, 0, 0); font-weight: bold;">0</span><span style="color: rgb(0, 0, 0);">; len1 </span><span style="color: rgb(0, 0, 255);">INT</span> :<span style="color: rgb(128, 128, 128);">=</span> <span style="color: rgb(128, 0, 0); font-weight: bold;">0</span><span style="color: rgb(0, 0, 0);">; </span><span style="color: rgb(255, 0, 255);">str</span> <span style="color: rgb(0, 0, 255);">VARCHAR2</span> (<span style="color: rgb(128, 0, 0); font-weight: bold;">4000</span><span style="color: rgb(0, 0, 0);">); </span><span style="color: rgb(0, 0, 255);">BEGIN</span> <span style="color: rgb(255, 0, 255);">len</span> :<span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(0, 0, 0);"> LENGTH (p_str); len1 :</span><span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(0, 0, 0);"> LENGTH (p_delimiter); </span><span style="color: rgb(0, 0, 255);">WHILE</span> j <span style="color: rgb(128, 128, 128);"><</span> <span style="color: rgb(255, 0, 255);">len</span><span style="color: rgb(0, 0, 0);"> LOOP j :</span><span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(0, 0, 0);"> INSTR (p_str, p_delimiter, i); </span><span style="color: rgb(0, 0, 255);">IF</span> j <span style="color: rgb(128, 128, 128);">=</span> <span style="color: rgb(128, 0, 0); font-weight: bold;">0</span> <span style="color: rgb(0, 0, 255);">THEN</span><span style="color: rgb(0, 0, 0);"> j :</span><span style="color: rgb(128, 128, 128);">=</span> <span style="color: rgb(255, 0, 255);">len</span><span style="color: rgb(0, 0, 0);">; </span><span style="color: rgb(255, 0, 255);">str</span> :<span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(0, 0, 0);"> SUBSTR (p_str, i); </span><span style="color: rgb(0, 0, 255);">PIPE</span> ROW (<span style="color: rgb(255, 0, 255);">str</span><span style="color: rgb(0, 0, 0);">); </span><span style="color: rgb(0, 0, 255);">IF</span> i <span style="color: rgb(128, 128, 128);">>=</span> <span style="color: rgb(255, 0, 255);">len</span> <span style="color: rgb(0, 0, 255);">THEN</span> <span style="color: rgb(0, 0, 255);">EXIT</span><span style="color: rgb(0, 0, 0);">; </span><span style="color: rgb(0, 0, 255);">END</span> <span style="color: rgb(0, 0, 255);">IF</span><span style="color: rgb(0, 0, 0);">; </span><span style="color: rgb(0, 0, 255);">ELSE</span> <span style="color: rgb(255, 0, 255);">str</span> :<span style="color: rgb(128, 128, 128);">=</span> SUBSTR (p_str, i, j <span style="color: rgb(128, 128, 128);">-</span><span style="color: rgb(0, 0, 0);"> i); i :</span><span style="color: rgb(128, 128, 128);">=</span> j <span style="color: rgb(128, 128, 128);">+</span><span style="color: rgb(0, 0, 0);"> len1; </span><span style="color: rgb(0, 0, 255);">PIPE</span> ROW (<span style="color: rgb(255, 0, 255);">str</span><span style="color: rgb(0, 0, 0);">); </span><span style="color: rgb(0, 0, 255);">END</span> <span style="color: rgb(0, 0, 255);">IF</span><span style="color: rgb(0, 0, 0);">; </span><span style="color: rgb(0, 0, 255);">END</span><span style="color: rgb(0, 0, 0);"> LOOP; </span><span style="color: rgb(0, 0, 255);">RETURN</span><span style="color: rgb(0, 0, 0);">; </span><span style="color: rgb(0, 0, 255);">END</span> fn_split;</pre> <div class="cnblogs_code_toolbar"></div> </div> 3、字符串数组的应用 <div class="cnblogs_code"> <div class="cnblogs_code_toolbar"></div> <pre><span style="color: rgb(0, 128, 128);">/*</span><span style="color: rgb(0, 128, 128);"> description:车机联控下发到责任单位 </span><span style="color: rgb(0, 128, 128);">*/</span> <span style="color: rgb(0, 0, 255);">PROCEDURE</span><span style="color: rgb(0, 0, 0);"> CJLK_UNIT_DOWN( P_ERRCD </span><span style="color: rgb(128, 128, 128);">IN</span> OUT <span style="color: rgb(0, 0, 255);">NUMBER</span><span style="color: rgb(0, 0, 0);">, P_ERRMSG </span><span style="color: rgb(128, 128, 128);">IN</span> OUT <span style="color: rgb(0, 0, 255);">VARCHAR2</span><span style="color: rgb(0, 0, 0);">, P_CJLK_XH </span><span style="color: rgb(128, 128, 128);">IN</span> <span style="color: rgb(0, 0, 255);">VARCHAR2</span><span style="color: rgb(0, 0, 0);">, P_JSDWBH </span><span style="color: rgb(128, 128, 128);">IN</span> <span style="color: rgb(0, 0, 255);">VARCHAR2</span><span style="color: rgb(0, 0, 0);">, P_JSDWMC </span><span style="color: rgb(128, 128, 128);">IN</span> <span style="color: rgb(0, 0, 255);">VARCHAR2</span><span style="color: rgb(0, 0, 0);">, P_ZT </span><span style="color: rgb(128, 128, 128);">IN</span> <span style="color: rgb(0, 0, 255);">VARCHAR</span> <span style="color: rgb(0, 0, 255);">DEFAULT</span> <span style="color: rgb(255, 0, 0);">'</span><span style="color: rgb(255, 0, 0);">A</span><span style="color: rgb(255, 0, 0);">'</span><span style="color: rgb(0, 0, 0);"> )</span><span style="color: rgb(0, 0, 255);">AS</span> <span style="color: rgb(0, 0, 255);">CURSOR</span> L_JSDWBH <span style="color: rgb(0, 0, 255);">IS</span> <span style="color: rgb(0, 0, 255);">SELECT</span> <span style="color: rgb(128, 128, 128);">*</span> <span style="color: rgb(0, 0, 255);">FROM</span> <span style="color: rgb(0, 0, 255);">TABLE</span> (<span style="color: rgb(255, 0, 255);">CAST</span> (FN_SPLIT(P_JSDWBH,<span style="color: rgb(255, 0, 0);">'</span><span style="color: rgb(255, 0, 0);">;</span><span style="color: rgb(255, 0, 0);">'</span>) <span style="color: rgb(0, 0, 255);">AS</span><span style="color: rgb(0, 0, 0);"> ty_str_split)); </span><span style="color: rgb(0, 0, 255);">BEGIN</span><span style="color: rgb(0, 0, 0);"> P_ERRCD:</span><span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(128, 0, 0); font-weight: bold;">0</span><span style="color: rgb(0, 0, 0);">; P_ERRMSG:</span><span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(255, 0, 0);">''</span><span style="color: rgb(0, 0, 0);">; </span><span style="color: rgb(0, 0, 255);">UPDATE</span> AQGL.CJLK <span style="color: rgb(0, 0, 255);">SET</span> JSDWBH<span style="color: rgb(128, 128, 128);">=</span>P_JSDWBH,JSDWMC<span style="color: rgb(128, 128, 128);">=</span>P_JSDWMC,ZT<span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(255, 0, 0);">'</span><span style="color: rgb(255, 0, 0);">B</span><span style="color: rgb(255, 0, 0);">'</span> <span style="color: rgb(0, 0, 255);">WHERE</span> XH<span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(0, 0, 0);">P_CJLK_XH; </span><span style="color: rgb(0, 0, 255);">FOR</span> I <span style="color: rgb(128, 128, 128);">IN</span><span style="color: rgb(0, 0, 0);"> L_JSDWBH LOOP </span><span style="color: rgb(0, 0, 255);">INSERT</span> <span style="color: rgb(0, 0, 255);">INTO</span><span style="color: rgb(0, 0, 0);"> AQGL.CJLK_DWFK (XH,PID,JSDWBH,JSDWMC,ZT) </span><span style="color: rgb(0, 0, 255);">VALUES</span><span style="color: rgb(0, 0, 0);"> (sys_guid(),P_CJLK_XH,I.COLUMN_VALUE,GET_DWMC(i.column_value),P_ZT); </span><span style="color: rgb(0, 0, 255);">END</span><span style="color: rgb(0, 0, 0);"> LOOP; </span><span style="color: rgb(0, 0, 255);">COMMIT</span><span style="color: rgb(0, 0, 0);">; EXCEPTION </span><span style="color: rgb(0, 0, 255);">WHEN</span> OTHERS <span style="color: rgb(0, 0, 255);">THEN</span> <span style="color: rgb(0, 0, 255);">ROLLBACK</span><span style="color: rgb(0, 0, 0);">; P_ERRCD:</span><span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(0, 0, 0);">SQLCODE; P_ERRMSG:</span><span style="color: rgb(128, 128, 128);">=</span><span style="color: rgb(0, 0, 0);">SQLERRM; </span><span style="color: rgb(0, 0, 255);">END</span>;</pre> <div class="cnblogs_code_toolbar"></div> </div> 其中P_JSDWBH包含了多个用;分隔的字符串。 </div>
试试其它关键字
字符串
同语言下
.
查看某张表的表结构
.
oracle 集合操作
.
for 循环中倒序 用reverse
.
Oracle 临时表空间收缩
.
查看session及其对应运行的sql
.
Oracle常用查看表结构命令
.
Oracle Connect By Prior用法(实现递归查询)
.
重置排序 SEQUENCE
.
创建一个trigger
.
批量替换字段中的字符
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
Dezai.CN
贡献的其它代码
(
4037
)
.
多线程Socket服务器模块
.
生成随机密码
.
清除浮动样式
.
弹出窗口居中
.
抓取url的函数
.
使用base HTTP验证
.
div模拟iframe嵌入效果
.
通过header转向的方法
.
Session操作类
.
执行sqlite输入插入操作后获得自动编号的ID
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3