Which of the following SQL statements is used to modify the data in a table ?
2025
Which of the following SQL statements is used to modify the data in a table ?
- A.
SELECT
- B.
INSERT
- C.
UPDATE
- D.
DELETE
Attempted by 282 students.
Show answer & explanation
Correct answer: C
The question asks which SQL statement modifies data. UPDATE is the correct command for modifying existing records, while SELECT retrieves, INSERT adds new rows, and DELETE removes data.