Ticker

6/recent/ticker-posts

PL/SQL Program To Print Rectangular Star Pattern Part 2 - Javainhand Tutorial

 In this Tutorial, We will learn to make Rectangular Star in PL/SQL Program.

Rectangular Star in PL/SQL Program

PL/SQL Code:-
declare
v_number number:=5;
begin
    for row in 1..v_number
    loop
            for col in 1..v_number 
            loop
            dbms_output.put('*');
            end loop;
    DBMS_OUTPUT.NEW_LINE;
    end loop;
end;

That's all for today, I think( Print Rectangular Star Pattern in PL/SQL Program) post will be helpful for you. If you like the post then share your view in the comment box.

Post a Comment

0 Comments