摘要: oracle学习--循环语句 loop循环:create or replace procedure pro_test_loop isi number;begini:=0;loop i:=i+1; dbms_output.put_line(i); if i>5 then exit; end if;end loop;end pro_test_loop;while循环:create or replace procedure pro_test_while isi number;begini:=0;while i<5 loop i:=i+1; dbms_output.put_line(i); 阅读全文
posted @ 2007-06-22 14:10 快乐就好 阅读(36466) 评论(1) 推荐(1)