Inserting into a mysql table and overwritng any current data

前端 未结 5 953
醉话见心
醉话见心 2020-12-16 19:48

I am inserting some data into a table, but it occasionally clashes with other data in the table (ie. it has the same primary key).
I would like to be able to just over

5条回答
  •  情话喂你
    2020-12-16 19:59

    You can use REPLACE INTO in MySQL to do this.

    REPLACE INTO table
    SET name = 'Treffynnon'
    

提交回复
热议问题