Answers for "print hello world in sql"

SQL
0

print hello world in sql

DECLARE
text VARCHAR2(25);
BEGIN
text:= ‘Hello World’;
dbms_output.put_line (text);
END:
/
Posted by: Guest on March-15-2022
0

print hello world in sql

BEGIN
dbms_output.put_line (‘Hello World..');
END;
/
Posted by: Guest on March-15-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language