1 2 3 4 5 6 7 8 9
SET serveroutput ON DECLARE A VARCHAR(50) := 'hello world'; BEGIN DBMS_OUTPUT.putline(A); END;