📅  最后修改于: 2022-03-11 15:05:12.129000             🧑  作者: Mango
代码示例2
-- EXAMPLE
SET SERVEROUTPUT ON;
BEGIN
DBMS_OUTPUT.PUT_LINE('This is printed. '||'This is concatenated and printed too!');
END;
/