Oracle與MySQL內嵌遊標的使用示例

WSH_AI發表於2018-04-14

Oracle 遊標用For迴圈比較簡單,MySQL也是最近才開始用,感覺稍微麻煩一點,下邊直接上程式碼:

-----------------------------------------------------------
-- Oracle
-- 內嵌遊標為帶參遊標,引數為外遊標值
-----------------------------------------------------------
DECLARE
  cursor cur_outer is select dept_id from tbl_test_dept;
  cursor cur_inner(deptid varchar2) is (SELECT user_id FROM tbl_test_user WHERE dept_id=deptid);
  BEGIN
    FOR DEPT_ITEM IN cur_outer LOOP
              --
              --
        FOR KEY_ITEM IN cur_process(DEPT_ITEM.DEPT_ID) LOOP --開始內迴圈
              --
              --
        END LOOP;
    END LOOP;
  commit;
END;

------------------------------
-- Mysql
-- HANDLER 只能申明一個
-- 內迴圈結束後需要重置done
-- 發現mysql不能直接執行begin..end,需要建立儲存過程後呼叫執行;
------------------------------
CREATE PROCEDURE `PROC_CURSOR_TEST`()
BEGIN
  DECLARE done INT DEFAULT FALSE;
  DECLARE item_outer VARCHAR(50);outer
  DECLARE item_inner VARCHAR(50);
  DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
  -- 定義內外遊標
  DECLARE cur_outer cursor for select dept_id from tbl_test_dept;
  DECLARE cur_inner cursor for (SELECT user_id FROM tbl_test_user WHERE dept_id=item_outer);-- 查詢條件可直接用外遊標變數值

  OPEN cur_outer;
  out_loop: LOOP
    fetch cur_outer into item_outer;
      IF  done THEN -- 判斷是否繼續迴圈
        LEAVE out_loop;
      END IF;
        --
        --
    OPEN cur_process; -- 開啟內嵌遊標
    inner_loop: LOOP
    fetch cur_inner into item_inner;
      IF  done THEN
        LEAVE inner_loop;
      END IF;
        --
        --
    end loop;
    CLOSE cur_inner;
    SET done = 0;  -- 關閉內遊標,重置done
  end loop;
  CLOSE cur_outer;
  commit;
END;
call PROC_CURSOR_TEST(); -- 呼叫儲存過程
drop procedure PROC_CURSOR_TEST; --刪除

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31530407/viewspace-2152932/,如需轉載,請註明出處,否則將追究法律責任。

相關文章