Answers for "postgres update from join"

SQL
3

update with inner join postgres

update xtable x 
set col1 = y.col1
from ytable y 
where y.x_id = x.id;
Posted by: Guest on May-29-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language