Oracle 11g数据库基础教程(第2版)-课后习题-第九章

----第九章 --1.编写一个PL/SQL块,输出全部员工的员工姓名、员工号、工资和部门号 set serveroutput on declare cursor c_emp is select * from emp; v_emp c_emp%rowtype; begin open c_emp; loop fetch c_emp into v_emp; exit when c_em
相关文章
相关标签/搜索