Mise à jour SQL d'une autre table jointure

The INNER JOIN keyword selects records that have matching values in both tables.

UPDATE column_name(s)
set table0.example
FROM table1
INNER JOIN table2
ON table1.column_name = table2.column_name;
Lucas Gomes