我在一个表中有4列,并且需要按行添加这些列,并且此结果需要在postgres中按行更新到另一张表的列中。
答案 0 :(得分:0)
在Postgres中,可以在from
中使用update
子句。您的问题有点含糊,但如下所示:
update toupdate
set sumcol = (t1.col1 + t1.col2 + t1.col3 + t1.col4)
from table1 t1
where t1.? = toupdate.?;
?
用于标识两个表之间的行如何匹配的列。