loop in oracle code example

Example 1: oracle for loop

DECLARE
    i NUMBER;
BEGIN
    FOR i IN 1..5
        LOOP
            dbms_output.PUT_LINE('i value : ' || i);
        END LOOP;
END;

Example 2: for loop in oracle

DECLARE
    count number(2) := 10;
BEGIN
    FOR count in 10..20                         (FOR count in REVERSE 10..20)
    LOOP
        dbms_output.put_line("COUNT : " || count);
    END LOOP;
END;

-- FOR count in 10..20 
-- it will print value from 10 to 20
-- FOR count in REVERSE 10..20 
-- it will print value from 20 to 10

Example 3: for loop oracle

-- FOR LOOP --------------
  FOR loop_counter IN [REVERSE] lowest_number..highest_number
  LOOP
     {...statements...}
  END LOOP;
  
-- FOR LOOP (MODERN) --------------
  FOR record_index in cursor_name
  LOOP
  {...statements...}
  END LOOP;
  
-- CURSOR LOOP (OLD STYLE) --------------
	OPEN c_customers; 
    LOOP 
    	FETCH c_customers into c_rowtype_var; 
    	EXIT WHEN c_customers%notfound; 
    	{...statements...}; 
    END LOOP;

Tags:

Misc Example