• <bdo id='I9EXP'></bdo><ul id='I9EXP'></ul>

    <legend id='I9EXP'><style id='I9EXP'><dir id='I9EXP'><q id='I9EXP'></q></dir></style></legend>
  • <i id='I9EXP'><tr id='I9EXP'><dt id='I9EXP'><q id='I9EXP'><span id='I9EXP'><b id='I9EXP'><form id='I9EXP'><ins id='I9EXP'></ins><ul id='I9EXP'></ul><sub id='I9EXP'></sub></form><legend id='I9EXP'></legend><bdo id='I9EXP'><pre id='I9EXP'><center id='I9EXP'></center></pre></bdo></b><th id='I9EXP'></th></span></q></dt></tr></i><div id='I9EXP'><tfoot id='I9EXP'></tfoot><dl id='I9EXP'><fieldset id='I9EXP'></fieldset></dl></div>

        <small id='I9EXP'></small><noframes id='I9EXP'>

        <tfoot id='I9EXP'></tfoot>

        如何循环遍历 Oracle PLSQL 中的分隔列表

        How to loop through a delimited list in Oracle PLSQL(如何循环遍历 Oracle PLSQL 中的分隔列表)
          <i id='2V73L'><tr id='2V73L'><dt id='2V73L'><q id='2V73L'><span id='2V73L'><b id='2V73L'><form id='2V73L'><ins id='2V73L'></ins><ul id='2V73L'></ul><sub id='2V73L'></sub></form><legend id='2V73L'></legend><bdo id='2V73L'><pre id='2V73L'><center id='2V73L'></center></pre></bdo></b><th id='2V73L'></th></span></q></dt></tr></i><div id='2V73L'><tfoot id='2V73L'></tfoot><dl id='2V73L'><fieldset id='2V73L'></fieldset></dl></div>
            <tbody id='2V73L'></tbody>

            <legend id='2V73L'><style id='2V73L'><dir id='2V73L'><q id='2V73L'></q></dir></style></legend>
            <tfoot id='2V73L'></tfoot>
              <bdo id='2V73L'></bdo><ul id='2V73L'></ul>

              <small id='2V73L'></small><noframes id='2V73L'>

                  本文介绍了如何循环遍历 Oracle PLSQL 中的分隔列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在研究一个 Oracle 过程,该过程在其中调用另一个过程.我的参数之一 (parm1) 可以在逗号分隔列表中包含一个或多个值.如何遍历这些值以将它们一次传递给另一个过程?

                  I am working on an Oracle procedure that calls another procedure within it. One of my parameters (parm1) can contain one or more values in a comma separated list. How can I loop through these values to pass them one at a time to another procedure?

                  这是我希望它做的一个例子:

                  Here is an example of what I would like it to do:

                  When Parm1 = 123,312
                  
                  callProcedure2(123)
                  callProcedure2(321)
                  

                  -或-

                  When Parm1 123
                  
                  callProcedure2(123)
                  

                  我认为这可以使用循环来完成,但我不知道如何让它将每个值用作循环内的单独调用.

                  I think this can be accomplished using a loop but I can't figure out how to get it to use each value as a separated call within the loop.

                  任何帮助将不胜感激!

                  谢谢!

                  推荐答案

                  只需循环子串:

                  declare 
                    parm1 varchar2(1000) := '123,234,345,456,567,789,890';
                  
                    vStartIdx binary_integer;
                    vEndIdx   binary_integer;
                    vCurValue varchar2(1000);
                  begin
                  
                    vStartIdx := 0;
                    vEndIdx   := instr(parm1, ','); 
                  
                    while(vEndIdx > 0) loop
                      vCurValue := substr(parm1, vStartIdx+1, vEndIdx - vStartIdx - 1);
                  
                      -- call proc here
                      dbms_output.put_line('->'||vCurValue||'<-');
                  
                      vStartIdx := vEndIdx;
                      vEndIdx := instr(parm1, ',', vStartIdx + 1);  
                    end loop;
                  
                    -- Call proc here for last part (or in case of single element)
                    vCurValue := substr(parm1, vStartIdx+1);
                    dbms_output.put_line('->'||vCurValue||'<-');
                  
                  end;
                  

                  这篇关于如何循环遍历 Oracle PLSQL 中的分隔列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to import CSV into sqlite using RSqlite?(如何使用 RSqlite 将 CSV 导入 sqlite?)
                  Import CSV to Update rows in table(导入 CSV 以更新表中的行)
                  How to call Oracle function or stored procedure using spring persistence framework?(如何使用 Spring 持久化框架调用 Oracle 函数或存储过程?)
                  What can cause intermittent ORA-12519 (TNS: no appropriate handler found) errors(什么会导致间歇性 ORA-12519(TNS:找不到合适的处理程序)错误)
                  SQL to return the number of working days between 2 passed in dates(SQL 返回两个传入日期之间的工作日数)
                  Oracle Date Subtraction(Oracle 日期减法)

                    <bdo id='SqBFE'></bdo><ul id='SqBFE'></ul>
                    • <tfoot id='SqBFE'></tfoot>

                      <small id='SqBFE'></small><noframes id='SqBFE'>

                          <tbody id='SqBFE'></tbody>
                        <legend id='SqBFE'><style id='SqBFE'><dir id='SqBFE'><q id='SqBFE'></q></dir></style></legend>
                        <i id='SqBFE'><tr id='SqBFE'><dt id='SqBFE'><q id='SqBFE'><span id='SqBFE'><b id='SqBFE'><form id='SqBFE'><ins id='SqBFE'></ins><ul id='SqBFE'></ul><sub id='SqBFE'></sub></form><legend id='SqBFE'></legend><bdo id='SqBFE'><pre id='SqBFE'><center id='SqBFE'></center></pre></bdo></b><th id='SqBFE'></th></span></q></dt></tr></i><div id='SqBFE'><tfoot id='SqBFE'></tfoot><dl id='SqBFE'><fieldset id='SqBFE'></fieldset></dl></div>