Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-Update basierend auf der Existenz in einer anderen Tabelle

Versuchen Sie es mit diesem -

UPDATE table1 t1
  JOIN table2 t2
    ON t1.col = t2.col
SET t1.status = 1;