[color=red][b]编写函数:[/b][/color]
[b][color=red]使用函数:[/color][/b]
create or replace function sal_tax
--传入参数
(v_sal number)
--返回参数
return number
is
begin
if(v_sal < 2000) then
return 0.10;
elsif(v_sal < 2750) then
return 0.15;
else
return 0.20;
end if;
end;
[b][color=red]使用函数:[/color][/b]
select sal_tax(sal) from emp;