oracle,sqlplus 函数带参数返回一个值
functionget_salary(no_employeeint)returnintisbegin......我想要把这个函数,写在包里,通过输入一个员工号码,函数可以...
function get_salary(no_employee int) return int
is
begin
......
我想要把这个函数,写在包里,通过输入一个员工号码,函数可以返回这个员工的工资,还有测试语句(在包外面测试),谢谢了。 展开
is
begin
......
我想要把这个函数,写在包里,通过输入一个员工号码,函数可以返回这个员工的工资,还有测试语句(在包外面测试),谢谢了。 展开
1个回答
2013-12-01 · 知道合伙人软件行家
renfengjun1986
知道合伙人软件行家
向TA提问 私信TA
知道合伙人软件行家
采纳数:925
获赞数:1553
中国地质调查局特聘数据库专家 CSDN博客专家 百度知道数据库行家 炼数成金版主 想了解更多请关注我的博客:
向TA提问 私信TA
关注
展开全部
create or replace package x1 is
function get_salary(no_employee int) return int ;
end ;
/
create or replace package body x1 is
--返回值为空表示表中没有给定的员工号码
function get_salary(no_employee int) return int is
l_sal int ;
begin
select sum(salary) into l_sal from emp where empno=no_employee ;
return sal;
end ;
end ;
/
exec x1.get_salary(&empno) ;
function get_salary(no_employee int) return int ;
end ;
/
create or replace package body x1 is
--返回值为空表示表中没有给定的员工号码
function get_salary(no_employee int) return int is
l_sal int ;
begin
select sum(salary) into l_sal from emp where empno=no_employee ;
return sal;
end ;
end ;
/
exec x1.get_salary(&empno) ;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询