Registriert seit: 23. Jan 2008
3.686 Beiträge
Delphi 2007 Enterprise
|
AW: [MySQL] Multiple-Row-Update
20. Jul 2011, 12:51
Okay, selbst drauf gekommen. Letztlich simpel:
Code:
UPDATE `mytable` SET
`color` = CASE id
WHEN 2 THEN 255
ELSE `color`
END,
`position` = CASE id
WHEN 1 THEN 5
ELSE `position`
END
Sorry!
"When one person suffers from a delusion, it is called insanity. When a million people suffer from a delusion, it is called religion." (Richard Dawkins)
|