Last active 2 days ago

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

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