sql >> Database >  >> RDS >> Oracle

Sleutelwoord 'DOORGAAN' in Oracle 10g PL/SQL

Je kunt een doorgaan simuleren met goto en 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. Impasses in Oracle

  2. CSV importeren naar MySQL

  3. Gegevens exporteren naar JSON-bestand in Oracle 11g met PL/SQL

  4. PostgreSQL:tijd voor het maken van tabellen