oracle pl/sql 语句declare..begin..and.. 执行后没有显示结果,只有pl/sql执行成功,怎样显示出结果?
发布网友
发布时间:2022-06-07 20:03
我来回答
共4个回答
热心网友
时间:2023-10-25 17:35
可以通过dbms_output.put_line()将结果输出
括号中写字符串变量,或字符串。
执行后,在sql窗口的 输出页面查看输出结果。
解决后记得采纳。
热心网友
时间:2023-10-25 17:35
首先在你的pl/sql中必须执行语句:
set serveroutput on;
其次有输出语句
dbms_output.put_line('输出内容');
热心网友
时间:2023-10-25 17:36
运行你的pl/sql匿名块之前:
set serveroutput on size unlimited
在你的pl/sql匿名块中:
dbms_output.put_line(你想输出的东西);
热心网友
时间:2023-10-25 17:36
set serveroutput on