What are differences between INSERT and UPDATE in MySQL?

后端 未结 6 1464
伪装坚强ぢ
伪装坚强ぢ 2020-12-01 15:42

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

Is there any occasions where I should use INSERT instead of UPDATE<

6条回答
  •  独厮守ぢ
    2020-12-01 16:13

    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.

提交回复
热议问题