To update existing records in a database, the _____ statement is used in SQL.

  • UPDATE
  • INSERT
  • DELETE
  • ALTER TABLE
The correct answer is "UPDATE." In SQL, the UPDATE statement is used to modify existing records in a database. You specify the table you want to update and set new values for the columns based on a condition that identifies the rows to be updated. The UPDATE statement is crucial for maintaining and modifying data in a database, ensuring that it reflects the latest information.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *