You are viewing a single comment's thread. Return to all comments →
I have written a query in PL/SQL for pattern
set serveroutput on; begin for i in reverse 1..20 loop for j in 1..i loop dbms_output.put('*'); dbms_output.put(' '); end loop; dbms_output.new_line; end loop; end; /
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 1
You are viewing a single comment's thread. Return to all comments →
Orcale:
I have written a query in PL/SQL for pattern