16-Oracle学习_自定义函数

参考:http://www.cnblogs.com/wuyisky/archive/2010/05/11/oracle_function.html
(1) 创建
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;


(2) 使用
select sal_tax(sal) from emp;

你可能感兴趣的:(自定义函数,oracle学习)