-声明一个函数 --replace 取代 放回 --sal:月工资
create or replace function fn_get_avg_sal(dno number) return number is avgSal emp.sal%type; --返回和数字 叫做avgSal是emp员工表中的sal字段的类型 begin select avg(sal) into avgSal from emp where detpno=dno; --查询sal的平均值 into给声明好的avgSal。 return avgSal; end fn_get_avg_sal;
--调用语句 --往函数中传值20,20为部门的编号。 --即查询编号是20这个部门的员工平均工资,dual:伪表. select fn_get_avg_sal(20) from dual;
|