MySQL'de birden fazla tablo ile güncelleme

SQL Server'da birden fazla tablo ile güncelleme yaparken aşağıdakine benzer bir kod kullanıyoruz :

update t1
set t1.kolon1 = t2.kolon1
from tablo1 t1, tablo2 t2
where t1.kolon2 = t2.kolon2


Aynı işlemi mySQL ile yapmak için aşağıdaki kodu kullanabiliriz :

update tablo1 t1, tablo2 t2
set t1.kolon1 = t2.kolon1
where t1.kolon2 = t2.kolon2



İyi çalışmalar...

Comments