Hello, World! in SQL

Example for versions Oracle 10g SQL, Oracle 11g SQL

This example accomplishes the task by means of anonymous PL/SQL block, which uses standard package dbms_output to print the message to standard output.

begin
    dbms_output.put_line('Hello, World!');
end;