Mysql – Is it possible to combine parameterised update statements?
I have a large number of similar but unique update statements, where the same fields are being updated with different values, ie. UPDATE tbl SET field1 = "x" WHERE pk = 1; UPDATE tbl SET field1 = "y" WHERE pk…