27 Mart 2015 Cuma

Select ile Update Yapmak

Başka Tablodan Select ile update yapmak

UPDATE
    Table
SET
    Table.col1 = other_table.col1,
    Table.col2 = other_table.col2
FROM
    Table
INNER JOIN
    other_table
ON
    Table.id = other_table.id