I would like to use a update function in mysql to insert a record. Can I do that without using INSERT?
Thanks!
No. You use INSERT to insert new rows of data, and UPDATE to update existing rows of data.
Cheers, Alan