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 ?
Answer: C. UPDATE — The question asks which SQL statement modifies data. UPDATE is the correct command for modifying existing records, while SELECT retrieves, INSERT adds new…
- A.
SELECT
- B.
INSERT
- C.
UPDATE
- D.
DELETE
Attempted by 774 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.
Loading lesson…