oracle – 这个PL / SQL有什么问题?绑定变量*未声明

前端之家收集整理的这篇文章主要介绍了oracle – 这个PL / SQL有什么问题?绑定变量*未声明前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是:
declare
  v_str1   varchar2(80);
begin
  v_str1 := 'test';
  print :v_str1;
end

当我使用sqlDeveloper在sql工作表中运行它时,我得到这个:

Bind Variable "v_str1" is NOT DECLARED
anonymous block completed
得到它了:
set serveroutput on

declare
  v_str1   varchar2(80);    
begin
 v_str1 := 'test';
 dbms_output.put_line(v_str1);
end;

More info here.

原文链接:https://www.f2er.com/oracle/205410.html

猜你在找的Oracle相关文章