Oracle 大型数据库技术 2021实验项目八-附加 实验内容 1、创建一个存储过程,以一个整数为参数,输出scott模式下emp表中工资最高的前几个(参数值为多少,就显示排名前几位的工资)员工的信息。存储过程创建成功后并执行,将所有执行正确的PL/SQL语句记录下来。 代码: create or replace procedure emp_sort( i in number) is j number:=0; begin for r in (select empno,ename,sal from emp order by sal desc) loop dbms_output.put_...