oracle自定义函数

编写以部门号为参数,使用自定义函数并调用,计算出该部门的平均工资,并在前面的基础上列出部门内比平均工资高的员工姓名、职位、薪水。

create or replace function my_fun return number is
i number := 1;
total number := 1;
begin
while i<=20 loop
total := total*i;
i := i+1;
end loop;
return total;
end my_fun;
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答