update with inner join postgres code example
Example 1: mysql UPDate with enner join
UPDATE T1, T2,
[INNER JOIN | LEFT JOIN] T1 ON T1.C1 = T2. C1
SET T1.C2 = T2.C2,
T2.C3 = expr
WHERE condition
Example 2: update with inner join postgres
update xtable x
set col1 = y.col1
from ytable y
where y.x_id = x.id;
Example 3: sql join on wildcard
select *
from tableA a join
tableB b
on a.id like '%' + b.id + '%';