which function is used to display outputin PL/SQL? code example
Example: plsql print
-- EXAMPLE
SET SERVEROUTPUT ON;
BEGIN
DBMS_OUTPUT.PUT_LINE('This is printed. '||'This is concatenated and printed too!');
END;
/
-- EXAMPLE
SET SERVEROUTPUT ON;
BEGIN
DBMS_OUTPUT.PUT_LINE('This is printed. '||'This is concatenated and printed too!');
END;
/