Query performance difference pl/sql forall insert and plain SQL insert

前端 未结 6 1089
小鲜肉
小鲜肉 2021-02-10 02:29

We have been using temporary table to store intermediate results in pl/sql Stored procedure. Could anyone tell if there is a performance difference between doing bulk collect in

6条回答
  •  温柔的废话
    2021-02-10 03:16

    Insert into select must certainly be faster. Skips the overhead of storing the data in a collection first.

提交回复
热议问题