码迷,mamicode.com
首页 > 数据库 > 详细

oracle函数

时间:2018-11-21 00:45:55      阅读:410      评论:0      收藏:0      [点我收藏+]

标签:输入   类型   技术分享   nbsp   vgs   exception   creat   bms   pts   

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函数

标签:输入   类型   技术分享   nbsp   vgs   exception   creat   bms   pts   

原文地址:https://www.cnblogs.com/remote/p/9992729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!