begin
Num NUMBER;
EXEC GwInwForceQueueUpdateUser
('ITSC1','A07','167321','22202244333','20091103','1','110',:num);
end;
第0行出错
begin Num NUMBER; EXEC GwInwForceQueueUpdateUser ('ITSC1','A07','167321','222 got Error : ORA-06550: line 2, column 5: PLS-00103: Encountered the symbol "NUMBER" when expecting one of the following: := . ( @ % ; ORA-06550: line 5, column 1: PLS-00103: Encountered the symbol "END" when expecting one of the following: begin function package pragma procedure subtype type use form current cursor
答案 0 :(得分:1)
您的PL / SQL代码应如下所示:
declare
Num NUMBER;
begin
GwInwForceQueueUpdateUser('ITSC1','A07','167321','22202244333','20091103','1','110',num);
end;