ORACLE函数

返回值类型

 

                      函数

参数(可选项)

 

覆盖用法

 

创建函数

语法格式:

Create[or replace] function fun_name[ (parameter1[,parameter2]….)]return data_type is

函数内部变量

 

[inner_variable]

Begin

函数名称

 

Plsql_sentence;----sql语句

[exception]

 [dowith_sentences;]-----异常处理代码

End[fun_name];

 

 

例如:

 

Create orreplace function get_avg_pay(num_deptno number) return number is

Num_avg_paynumber;----保存平均工资的内部变量

Begin

Selectavg(sal) into num_avg_pay from emp where deptno=num_deptno;---某个部门的平均工资

Return(round(num_avg_pay,2));---返回平均工资

Exception

Whenno_data_found then

 Dbms_output.put_line(‘该部门编号不存在’);

Return(0);---返回工资0

End;

/

 

调用:

Declare

 Avg_pay number;

Begin

 Avg_pay:=get_avg_pay(10);

Dbms_output.put_line(‘平均工资是:’||avg_pay);

End;

/

 

 

删除函数

 

 

Dropfunction ‘函数名

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值