plsql cursor 函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了plsql cursor 函数相关的知识,希望对你有一定的参考价值。

cursor 函数可以使表中嵌套另外一个表。

select pha.po_header_id, pha.segment1, cursor(select pla.line_num, pla.unit_price from po_lines_all pla where pha.po_header_id=pla.po_header_id),
cursor(select plla.shipment_num, plla.quantity_received from po_line_locations_all plla where pha.po_header_id=plla.po_header_id),
cursor(select segment1 from po_headers_all phaa where phaa.po_header_id=pha.po_header_id)
from po_headers_all pha

技术分享

以上是关于plsql cursor 函数的主要内容,如果未能解决你的问题,请参考以下文章

PLSQL中显示Cursor隐示Cursor动态Ref Cursor差别

PLSQL中显示Cursor隐示Cursor动态Ref Cursor差别

PLSQL IMPLICIT CURSOR 在 CURSOR 之后没有找到数据

Oracle/PLSQL CURSOR FOR Loop

执行 CURSOR 时的 PLSQL FOR 循环

如何通过在 PL SQL 中根据需要声明 Cursor 来提高性能?