这个程序有什么错误?
我编写了以下 pl/sql 程序,但无法检测到错误:
declare
variable a number;
b number:=2354;
begin
b:=:a;
end;
其中的错误是
SP2-0552:未声明绑定变量“A”。
请帮忙...
I have write the following pl/sql program and unable to dectect the error :
declare
variable a number;
b number:=2354;
begin
b:=:a;
end;
the error in this is
SP2-0552: Bind variable "A" not declared.
plz help ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VARIABLE 是 SQL*PLus 关键字。因此,您需要将其移至 PL/SQL 声明之外:
VARIABLE is a SQL*PLus keyword. So you need to move it outside the PL/SQL declaration: