建立存儲過程,以部門編號爲參數,查詢並返回該部門平均工資,以及該部門中比該部門平均工資高的員工信息

create or replace procedure proc_show_emp(p_deptno employees.departmentid%type) as   v_sal employees.salary%type; begin   select avg(salary)     into v_sal     from employees    where departmentid = p
相關文章
相關標籤/搜索