一.思路:首先输出需要变量接收,需要声明变量,于是考虑什么变量类型比较合适,在这我用的是table类型,最后,查询出来,循环输出即可. 二.具体实现 -- 编写一个PL/SQL块,输出所有员工的员工姓名.员工号.工资和部门号 declare -- 声明table类型的对象,属性 员工姓名:ename,员工号:empno,工资:sal ,部门:deptno type emp_table_type is table of emp%rowtype index by binary_integer; --