Warning: Procedure created with compilation errors
小弟问个基础问题这个小程序哪里错了?
有emp表
ID NAME SEX SAL
---------- ---------- ---------- ----------------------------------------- 1 li 男 100
2 月 男 200
create procedure sp_pro3(spname varchar2,newsal number) is
begin
update emp set sal=newsal where name=spname;
end;
------解决方案--------------------具体报什么错?楼主能贴出来么?从存储过程的语法上来看,没啥错!
------解决方案--------------------没有问题啊,报什么错误?
------解决方案--------------------没有错误呀。而且你那个是“warning",并不是错误,看下warning指向的地方到底是什么?