Update con select - SQLSERVER vs MYSQL

Al tratar de ejecutar un update con select en mysql, con la forma que hacia en sqlserver no funcionaba.
En slqserver seria asi


UPDATE
    Table
SET
    Table.col1 = other_table.col1
FROM
    Table
INNER JOIN
    other_tableON
    Table.id = other_table.id

En Mysql es
UPDATE Table INNER JOIN other_table ON Table
.id = other_table.id SET Table.col1 = other_table.col1

Con esto pude solucionar mi update con select, espero que les sirva.
Saludos
Adalberto Montanía

Comentarios