为10号部门的员工涨工资

declare    cursor c1(dno number) is select empno from emp where detpno=dno;    pempno emp.empno%type; begin    open c1(10);    loop       fetch c1 into pempno;       exit when c1%notfound;       updat
相关文章
相关标签/搜索