What will be the result of such a query:
INSERT INTO `table` (f1,f2,f3,f4) SELECT 4,f2,f3,f4 FROM `table` WHERE f1=3;
if there are several lines with a f1=3
field value?
More precisely, I need to duplicate all the lines with the value of the field f1=3
, replacing the value of this field with 4.