Oracle题:创建一个函数,以员工号为参数,返回该员工所在部门的平均工资。 15

9点之前给出答案,急用!... 9点之前给出答案,急用! 展开
 我来答
小凝聊娱乐
高粉答主

2019-10-16 · 陪你聊聊那些新鲜的事儿
小凝聊娱乐
采纳数:174 获赞数:81185

向TA提问 私信TA
展开全部

以员工号为参数,返回该员工所在部门的平裤基逗均工资

create or replace function fun_sal(p_empno emp.empno%type)

return emp.sal%type

as v_sal emp.sal%type;

begin

select avg(sal) into v_sal from emp where deptno=

(select deptno from emp where empno=p_empno);

return v_sal;

end

begin

dbms_output.put_line (fun_sal (7844));

end;

扩展资料

例1:创建一锋桥个存储过程,以员工号为参数,输出该员工的工资。

create or replace procedure showsal(p_empno 胡卖emp.empno%type) as v_sal emp.sal%type; begin 

select sal into v_sal from emp where empno=p_empno;  dbms_output.put_line(v_sal); end; begin  showsal(7844); end;

例2:创建一个函数,以部门号为参数,返回该部门的平均工资;

create or replace function fun_avgsal(p_deptno emp.deptno%type) return emp.sal%type as v_sal emp.sal%type; begin

select avg(sal) into v_sal from emp where deptno=p_deptno;  return v_sal; end; begin  dbms_output.put_line (fun_avgsal(10));  end;

问明6E
高粉答主

2019-10-16 · 每个回答都超有意思的
知道答主
回答量:279
采纳率:100%
帮助的人:12.7万
展开全部

创建一个函数,以部门号为参数,返回该部门的平均工资。

create or replace function f_sxt6(v_deptno emp.deptno%type) return emp.sal%type is  

vr_sal emp.sal%type;  

begin  

select avg(sal) into vr_sal from emp where deptno = v_deptno;  

return vr_sal;  

end;  

执行  

select f_sxt6(20) 部门平均工资 from dual;  



扩展资料:

创建一个函数穗迅,以员工号为参数,返回该员工所在的部门的平均工资。  

create or replace function f_sxt7(v_empno emp.empno%type) return emp.sal%type is  弊族世

vr_sal emp.sal%type;  

begin  

select avg(sal) into vr_sal from emp where deptno = (select deptno from emp where empno = v_empno);  

return vr_sal;  

end;  

执行: 

select  f_sxt7(7369) from dual;  租肢

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友7dcbdd7
推荐于2017-11-28
知道答主
回答量:2
采纳率:0%
帮助的人:0
展开全部
create or replace function fun_ave(员工号 number)
return number
is
average number
begin
select ave(员工表.工资) into average
from 员工表,(select 部门号神野滚 from 员工表 where 员工号=员工号) 表2
where 员工表.部门号 = 表2.部门脊模号 ;
return average;
end
时间紧,写得比较粗糙。可能格式上有点错误。 函数里的汉语你改游余成相应的表跟表项就ok了
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式