函数 实例1:输入雇员的姓名,返回该雇员的年薪 create function fun1(spName varchar2) ,); begin +nvl(comm,) into yearSal from emp where ename=spName; return yearSal; end; / 在sqlplus中调用函数 var income number call annual_incomec('SCOTT') into: income; print income 同样我们可以在java程序…