I got this table in my MySQL database, \'users\'. It has the fields \'id\' and \'value\'.
Now, I want to update lots of rows in this table with a single
Assuming id is unique or primary...
insert into users (id,value) VALUES (1,53),(2,65),(3,47),(4,53),(5,47) on duplicate key update value=VALUES(value)