Antworten:
Fügen Sie einfach Parameter hinzu, die durch Komma getrennt sind:
UPDATE tablename SET column1 = "value1", column2 = "value2" ....
Siehe auch: mySQL-Handbuch zu UPDATE
UPDATE some_table
SET this_column=x, that_column=y
WHERE something LIKE 'them'