Hi friends today i will show before you some plsql programs.After two post about plsql it is neccessary to see some programs example. I hope you will like it.
1) begin
dbms_output.put_line('Hello world');
end;
/
5 basic plsql programs:-
Q1.Write a PL/SQL code that display "Hello World" on the Screen.
dbms_output.put_line('Hello world');
end;
/
