• UPDATE t2

    SET column1 = t1.column1, column2 = t1.column2,...

    FROM table1 t1 JOIN table2 t2

    ON t1.ID = t2.ID

    John