Kopieren Sie Daten von Cell zu Cell MySQL
update mytable set column1 = (select column1 from (select column1 from mytable where id = 2) as alias) where id = 5;
David Diamant
update mytable set column1 = (select column1 from (select column1 from mytable where id = 2) as alias) where id = 5;