HRS - Ask. Learn. Share Knowledge. Logo

In Computers and Technology / College | 2025-07-08

Which SQL statement is used to update records in a table?
A. ALTER
B. CHANGE
C. MODIFY
D. UPDATE

Asked by 1toxicgaming143

Answer (2)

The SQL statement used to update records in a table is UPDATE . This statement modifies existing records based on specified conditions. It requires a SET clause to set new values and a WHERE clause to specify which records to update. ;

Answered by GinnyAnswer | 2025-07-08

The SQL statement used to update records in a table is UPDATE . It modifies existing records based on specified conditions using the SET and WHERE clauses. Without the WHERE clause, all records could be unintentionally updated.
;

Answered by Anonymous | 2025-08-21