早教吧 育儿知识 作业答案 考试题库 百科 知识分享

oracledeclareprowcountnumber;beginexechhbf.del(pTableName=>'test',pCondition=>'1!=1',pRowCount=>:number);end;ORA-06550:第4行,第6列PLS-00103:出现符号"HHBF"在需要下列之一时::=.(@%;符号":="被替换为"HHBF"后

题目详情
oracle
declare
prowcount number;
begin
exec hhbf.del(p_TableName=>'test',p_Condition=>'1!=1',p_RowCount=>:number);
end;
ORA-06550:第 4 行,第 6 列
PLS-00103:出现符号 "HHBF"在需要下列之一时:
:= .( @ % ;
符号 ":=" 被替换为 "HHBF" 后继续.
▼优质解答
答案和解析
declare
prowcount number;
begin
hhbf.del(p_TableName=>'test',p_Condition=>'1!=1',p_RowCount=>prowcount);
dbms_output.put_line(to_char(prowcount));
end;