Last active 2 days ago

https://neon.com/postgresql/postgresql-tutorial/postgresql-update-join

sql

Revision d3cfb091d8bb10b99319dc2994a465c39afb2246

update_with_from_join.sql Raw
1UPDATE table1
2SET table1.c1 = new_value
3FROM table2
4WHERE table1.c2 = table2.c2;