Question Details

Detailed explanation and options for the selected question.

Which SQL statement is used to add a new row to a table?

A. INSERT INTO
B. UPDATE
C. ADD ROW
D. ALTER TABLE

Explanation:

INSERT INTO is used to add a new row to a table. UPDATE modifies existing rows, ADD ROW is invalid, and ALTER TABLE changes table structure.