贴吧用户_7UCCE5J
贴憨憨0
关注数: 0
粉丝数: 0
发帖数: 1
关注贴吧数: 3
新手求解 create or replace procedure sumemp( sdeptno in emp.deptno%type, ssal out emp.sal%type, number out emp.empno%type) is begin select sum(sal),count(empno) into ssal,number from emp where deptno=sdeptno; exception when others then dbms_output.put_line('errors'); end sumemp; /
1
下一页