Which method is used to display the output in 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;
/