What does the UPDATE statement do in SQL?

  • Define the structure of a database table
  • Delete records from a table
  • Modify existing records in a table
  • Retrieve data from a database
The UPDATE statement in SQL is used to modify existing records in a table. It allows users to change the values of one or more columns in existing rows based on specified conditions. This statement is crucial for updating data in a database when there are changes or corrections needed in the existing records. 
Add your answer
Loading...

Leave a comment

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