Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 SQL Server 中有一个存储过程,它已迁移到 oracle 数据库。
我怎样才能在 oracle 中实现同样的目标?
在 Oracle 中,您可能需要类似 PL/SQL 关联记录数组(也称为“索引”表)之类的东西。使用游标一个一个地获取记录,或者使用 BULK COLLECT 一次获取所有记录到数组中,然后在内存中处理它们。