【PLSQL】动态游标 分别拿出emp、dept表中所有的数据

--PLSQL 动态游标 分别拿出emp、dept表中所有的数据 declare c1 sys_refcursor;--声明一个动态游标 e emp%rowtype;--声明一个emp表的行记录数据类型 d dept%rowtype;--声明一个dept表的行记录数据类型 begin open c1
posted @ 2021-09-02 12:06  Rkey  阅读(6)  评论(0编辑  收藏  举报