Oracle Database SQL — Question 254

Which two statements are true about conditional INSERT ALL? (Choose two.)

Answer options

Correct answer: B, C

Explanation

Option B is correct because a single WHEN condition can indeed be applied to multiple INTO clauses in a conditional INSERT ALL statement. Option C is also correct as each WHEN condition is evaluated for every row returned by the subquery, ensuring appropriate handling based on the conditions set. The other options either misrepresent how conditional INSERT ALL operates or state incorrect limitations.