sql >> データベース >  >> RDS >> Oracle

Oracle 10g PL/SQLの「CONTINUE」キーワード

    gotoとlabelsを使用して続行をシミュレートできます。

    DECLARE
       done  BOOLEAN;
    BEGIN
       FOR i IN 1..50 LOOP
          IF done THEN
             GOTO end_loop;
          END IF;
       <<end_loop>>  -- not allowed unless an executable statement follows
       NULL; -- add NULL statement to avoid error
       END LOOP;  -- raises an error without the previous NULL
    END;
    


    1. ヒントとDISABLE_OPTIMIZED_NESTED_LOOPを使用する

    2. SQLiteテーブルの作成

    3. Oracleがサポートするバージョンマトリックス

    4. SQLServerの依存関係