2018年3月1日 21:20:17

PL/SQL范例 1
在cmd下面执行并保存到C盘目录下

declare
v_c varchar2(20) := '您好!';
begin
dbms_output.put_line(v_c);
end;
/
save C:\pl_1.sql