“MySQL -Update, wenn existiert sonst einfügen” Code-Antworten

MySQL -Update, wenn existiert sonst einfügen

INSERT INTO tableName(id, NAME, score)
VALUES(1, "Fadl", 285)
ON DUPLICATE KEY
UPDATE NAME = "Fadl", score = 285
FADL

MySQL Insert existiert Update

INSERT INTO table (column_list)
VALUES (value_list)
ON DUPLICATE KEY UPDATE
   c1 = v1, 
   c2 = v2,
   ...;
Lovely Lyrebird

MySQL -Update, wenn existiert sonst einfügen

I am amazed to see so many useless codes and answers...
Just replace INSERT with REPLACE.
¯\\_(ツ)_/¯
Alain Colour

MySQL -Update, wenn existiert sonst einfügen

INSERT INTO user(id, name, address)
VALUES(1, "Fadl", 285)
ON DUPLICATE KEY
UPDATE name = "Fadl", address = 285
aftab Ameen

Ähnliche Antworten wie “MySQL -Update, wenn existiert sonst einfügen”

Fragen ähnlich wie “MySQL -Update, wenn existiert sonst einfügen”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen