Question Details

Detailed explanation and options for the selected question.

Which SQL statement is used to modify existing rows in a table?

A. UPDATE
B. ALTER TABLE
C. INSERT INTO
D. DELETE

Explanation:

UPDATE modifies existing rows in a table. ALTER TABLE changes table structure, INSERT INTO adds rows, and DELETE removes rows.