postgres update column with value from another table

Solutions on MaxInterview for postgres update column with value from another table by the best coders in the world

showing results for - "postgres update column with value from another table"
Lilly
23 Aug 2016
1UPDATE t1 
2set "Column" = t2.column
3from t2 
4where t2.id = t1."Id";