RosettaCodeData/Task/Here-document/SQL-PL/here-document-4.sql

5 lines
155 B
MySQL
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
SET serveroutput ON
CALL DBMS_OUTPUT.PUT_LINE('This is the first line.' || chr(10) ||
'This is the second line.' || chr(10) ||
'This is the third line.');