You are using an update format to try to do an insert. MySql may support this, MSSql apparently does not. Use the format that is listed at the top of your MySql link and you should be fine.
Insert into mytable (col1, col2, col3)
Values ('val1', 'val2', 'val3')