欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

plsq程序设计--函数

程序员文章站 2022-03-03 23:52:13
...
[color=red][b]编写函数:[/b][/color]
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;
相关标签: SQL