当前位置: 代码迷 >> Oracle面试 >> 创设函数报 Function created with compilation errors 求解释
  详细解决方案

创设函数报 Function created with compilation errors 求解释

热度:2924   发布时间:2013-02-26 00:00:00.0
创建函数报 Function created with compilation errors 求解释
这是我比着视频创建的函数
create or replace function fun1(in_ename varchar2)
return number is
v_annual_sal number;
begin
select sal into v_snnual_sal from emp where ename=in_ename;
return v_annual_sal;
end;
/


本人刚学pl/sql编程,,,创建一值保错,求高手看下那个地方出了问题,谢谢了

------解决方案--------------------------------------------------------
end 跟上函数名
end fun1;
  相关解决方案