• + 0 comments

    SET SERVEROUTPUT ON; BEGIN FOR i IN 1..20 LOOP DBMS_OUTPUT.PUT_LINE(RPAD('* ', 2*i, '* ')); END LOOP; END; /