我是靠谱客的博主 精明服饰,最近开发中收集的这篇文章主要介绍创建存储过程,以部门编号为参数返回该部门的人数及平均工资(返回一个值可以通过函数来实现,但如果要返回多个值,需要使用out或in out模式参数实现),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
create or replace procedure proc_return_deptinfo(p_deptno employees.departmentid%type,
p_avgsal out employees.salary%type,
p_count out number) as
begin
select avg(salary), count(*)
into p_avgsal, p_count
from employees
where departmentid = p_deptno;
exception
when no_data_found then
dbms_output.put_line('then department dot''t exists');
end proc_return_deptinfo;
最后
以上就是精明服饰为你收集整理的创建存储过程,以部门编号为参数返回该部门的人数及平均工资(返回一个值可以通过函数来实现,但如果要返回多个值,需要使用out或in out模式参数实现)的全部内容,希望文章能够帮你解决创建存储过程,以部门编号为参数返回该部门的人数及平均工资(返回一个值可以通过函数来实现,但如果要返回多个值,需要使用out或in out模式参数实现)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复