Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

set serveroutput on;

DECLARE
v_cnt PLS_INTEGER DEFAULT 0;
BEGIN
LOOP
v_cnt:=v_cnt+1;
dbms_output.put_line ('Contador = '||v_cnt);
IF (v_cnt>=10) then
dbms_output.put_line ('Ya merito!');
exit;
END IF;
END LOOP;
END;

You might also like