Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To retrieve the SUM() of a particular value from a different column in BigQuery, you can use the following SQL query:

SELECT SUM(column_name)
FROM table_name
WHERE condition;

Replace "columnname" with the name of the column you want to sum and "tablename" with the name of the table containing the column. You can also add a "WHERE" clause to specify a condition for the rows you want to sum.