紀錄工作上的點點滴滴

Oracle PL/SQL 學習筆記

2024-03-13 工作雜記 Oracle PL/SQL

切字串成陣列 regexp_substr select regexp_substr ( :str, '[^,]+', 1, level ) value from dual 參考資料 How to split comma separated value strings into ... Read More

Oracle PL/SQL 學習筆記

2024-03-13 工作雜記 Oracle PL/SQL

判斷式 if else if a > b then t := 0; elsif a > c then t := 1; else t := 2; end if; 迴圈 LOOP ... V_LOOP_CONT := V_LOOP_CONT +1 ; IF V_TOTAL_LOOP_CONT ... Read More