本文介绍了如何在PostgreSQL中计算多列之和的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道是否有一种方法可以计算PostgreSQL中多列的总和。
I would like to know if there's a way to compute the sum of multiple columns in PostgreSQL.
我有一个包含80多个列的表,我必须编写一个查询,将每个列中的每个值相加。
I have a table with more than 80 columns and I have to write a query that adds each value from each column.
我尝试使用SUM(col1,col2,col3等),但是没有用。
I tried with SUM(col1, col2, col3 etc) but it didn't work.
推荐答案
SELECT COALESCE(col1,0) + COALESCE(col2,0)
FROM yourtable
这篇关于如何在PostgreSQL中计算多列之和的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!