Oracle's Stored Procedure Programming Lecture 7: The use of the for statement



 

 

create or replace procedure test01 is
 
begin
   For x in 0 .. 10 LOOP
       dbms_output.put_line(x||'----');
   end LOOP;
       
    
 
end test01;

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326673307&siteId=291194637