Question

It seems INSERT and UPDATE do the same things to me.

Is there any occasions where I should use INSERT instead of UPDATE and vice versa?

Was it helpful?

Solution

In CRUD operations, the INSERT is the 'C' and the UPDATEis the 'U'. They are two of the four basic functions of persistent storage. The other two are SELECT and DELETE. Without at least these four operations, a typical database system cannot be considered complete.

Use INSERT to insert a new record.

Use UPDATE to update an existing record.

OTHER TIPS

You cannot UPDATE a row that's not in a table.

You cannot INSERT a row that's already in a table.

Insert is for adding data to the table, update is for updating data that is already in the table.

An UPDATE statement can use a WHERE clause but INSERT cannot.

Insert is for putting in a fresh record to the table. while the update enables you to modify the inserted record e.g. modifying data type etc.

Insert can be useful to insert new record in BLANK row. While Update can be used to update row which is NOT BLANK.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top