oracle函数

Posted 凭栏倚窗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle函数相关的知识,希望对你有一定的参考价值。

oracle函数创建及调用

CREATE [OR REPLACE] FUNCTION function_name
[ (argment [ { IN | OUT | IN OUT } ] Type ,
argment [ { IN | OUT | IN OUT } ] Type ]
RETURN return_type 
{ IS | AS }
<类型.变量的说明> 
BEGIN
FUNCTION_body
EXCEPTION
其它语句
END;

示例:

1) 在scott.emp表上创建一个函数deptsal,输入参数为员工编号,返回该员工所在部门的平均工资。

(1)创建函数

create or replace function deptsal(f_deptno in number) return number

as

avgsal number;

begin

select avg(sal) into avgsal from emp where deptno=f_deptno;

return avgsal;

end;

/

(2)调用函数

declare

avgsal number(10,2);

begin

avgsal:=deptsal(10);

DBMS_OUTPUT.PUT_LINE(\'平均工资:\'||avgsal);

end;

/

(3)效果图

 

2) 在scott.emp表上创建一个函数deptnum,输入部门编号,返回该部门的员工人数,并调用该函数。

(1)创建函数

create or replace function deptnum(f_deptno in number) return int

as

dept_count int;

begin

select count(1) into dept_count from emp where deptno=f_deptno;

return dept_count;

end;

/

(2)调用函数

declare

dept_count int;

begin

dept_count:=deptnum(10);

DBMS_OUTPUT.PUT_LINE(\'部门人数:\'||dept_count);

end;

/

(3)效果图

 

以上是关于oracle函数的主要内容,如果未能解决你的问题,请参考以下文章

oracle累加分析函数

oracle中的ceil函数和floor函数的区别

Oracle 函数都有那些?

oracle分析函数问题

oracle Instr函数问题

oracle错误:函数没有足够的参数