I\'m trying to update row in a table using values from a different row (and different columns) in the same table. Something along the lines of this, although my syntax produ
Adding..
Same tables, with more of one registers
UPDATE table t1 INNER JOIN table t2 ON t2.entry_id = t1.entry_id SET t1.field_id_60 = t2.field_id_60, t1.field_id_61 = t2.field_id_61