PL/SQL First Example
Advertisements
PL/SQL First Example
Here i will show you how to print any message on screen or console. This is very simple example to print Hello word message.
Print Hello word five times
Example
begin
dbms_output.put_line("Hello word");
end;
Output
Hello word
Google Advertisment
