I would like to know if there\'s a way to compute the sum of multiple columns in PostgreSQL.
I have a table with more than 80 columns and I have to write a query th
SELECT COALESCE(col1,0) + COALESCE(col2,0) FROM yourtable