代码
create or replace procedure EXCHANGE(a inout number,b inout number)
as
temp number(10);
begin
temp:=a;
a:=b;
b:=temp;
end;
一直提示如下错误:
PLS-00103: Encountered the symbol "NUMBER" when expecting one of the following:
:=.),@%default character
The symbol ":=" was substituted for "NUMBER" to continue.