Which command lets you put data into more than one table using a single command?
-
MERGE
-
INSERT INTO MANY
-
MULTIADD
-
INSERT ALL INTO
D
Correct answer
Explanation
INSERT ALL is an Oracle SQL command that enables inserting data into multiple target tables using a single statement. You specify multiple INTO clauses, each targeting a different table and optionally with different conditions. This allows efficient population of related tables without separate INSERT commands. MERGE operates on one table, while INSERT INTO MANY and MULTIADD are not valid SQL commands.