A simple mySql question for all you experts:
I have a table table1 with three columns and a bunch of rows:
[key_col|col_a|col_b] I want to update col_a with a set of values (iei.e. leaving col_bcol_b unchanged), something like this:
INSERT INTO table1 AS t1 (key_col, col_a) VALUES ("k1", "foo"), ("k2", "bar"); Not working, how do I do this?
But it doesn't work, how do I do this?