oracle循環語句小結

主要有如下五種循環:Exit When、Loop、While、For(普通循環)、For(遊標循環),下面舉例一一說明(均爲存儲過程)。sql 一、Exit When循環: oop create or replace procedure proc_test_exit_when is i number; begin i:=0; LOOP Exit When(i>5); Dbms_Output.put
相關文章
相關標籤/搜索