Multiple choice technology databases

INSERT, UPDATE, DELETE commands when used in a PL/SQL block, should contain INTO clause to hold the data returned by SQL statement

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Only SELECT statements use the INTO clause to capture returned values. INSERT, UPDATE, and DELETE are DML commands that modify data directly and don't return data to be stored in variables.