Κατέβασμα παρουσίασης
Η παρουσίαση φορτώνεται. Παρακαλείστε να περιμένετε
ΔημοσίευσεMaurice Manella Τροποποιήθηκε πριν 9 χρόνια
1
ORACLE PL/SQL Άρης Στουγιαννίδης
2
ΒΡΟΧΟΣ ΜΕ ΜΕΤΡΗΤΗ FOR REM forloop.sql REM This is an example of a FOR loop. BEGIN FOR v_Counter IN 1..50 LOOP INSERT INTO temp_table VALUES (v_Counter, 'Loop Index'); END LOOP; END; /
3
ΕΜΒΕΛΕΙΑ ΜΕΤΑΒΛΗΤΗΣ REM forscope.sql REM This block demonstrates the scope of the index of a FOR LOOP. DECLARE v_Counter NUMBER := 7; BEGIN -- Inserts the value 7 into temp_table. INSERT INTO temp_table (num_col) VALUES (v_Counter); -- This loop redeclares v_Counter as a BINARY_INTEGER, which hides -- the NUMBER declaration of v_Counter. FOR v_Counter IN 20..30 LOOP -- Inside the loop, v_Counter ranges from 20 to 30. INSERT INTO temp_table (num_col) VALUES (v_Counter); END LOOP; -- Inserts another 7 into temp_table. INSERT INTO temp_table (num_col) VALUES (v_Counter); END; /
4
Μεταβλητά όρια τιμών βρόχου DECLARE v_LVal NUMBER ; v_Hval NUMBER ; BEGIN Δημιουργία τιμών FOR v_Counter IN v_LVal..v_HVal LOOP Do … END LOOP; END;
5
Αντίστροφη Μέτρηση REVERSE DECLARE v_LVal NUMBER ; v_Hval NUMBER; BEGIN --Δημιουργία τιμών FOR v_Counter IN REVERSE v_LVal..v_HVal LOOP --Do … END LOOP; END;
Παρόμοιες παρουσιάσεις
© 2024 SlidePlayer.gr Inc.
All rights reserved.