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

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

热度:320   发布时间:2016-04-24 03:23:40.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;
  相关解决方案