Insert

What is the Difference Between INSERT and UPDATE in SQL
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 INSER...