UPDATE changes an existing record.
INSERT creates a new record.
In either case, you can use the notation
INTO tbl_name (col1,col2) VALUES(val1,val2);
... or
INTO tbl_name SET col1=val1, col2=val2;
It's entirely up to you. Use the one that you find the most convenient and easily understood.