Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie füge ich einen Datensatz ein oder aktualisiere ihn, wenn er bereits existiert?

MySQL unterstützt das insert-on-duplicate Syntax, z.B.:

INSERT INTO table (key,col1) VALUES (1,2)
  ON DUPLICATE KEY UPDATE col1 = 2;