cho các nhận xét đơn giản:
set serveroutput on format wrapped;
begin
DBMS_OUTPUT.put_line('simple comment');
end;
/
-- do something
begin
DBMS_OUTPUT.put_line('second simple comment');
end;
/
bạn sẽ nhận được:
anonymous block completed
simple comment
anonymous block completed
second simple comment
nếu bạn muốn in ra kết quả của các biến, đây là một ví dụ khác:
set serveroutput on format wrapped;
declare
a_comment VARCHAR2(200) :='first comment';
begin
DBMS_OUTPUT.put_line(a_comment);
end;
/
-- do something
declare
a_comment VARCHAR2(200) :='comment';
begin
DBMS_OUTPUT.put_line(a_comment || 2);
end;
đầu ra của bạn phải là:
anonymous block completed
first comment
anonymous block completed
comment2