Parameter | Type | Description |
---|---|---|
values | decimal, double | All of the values added together. |
Returns: decimal
Example
query:
SELECT SUM(close_value)
FROM sales_pipeline
result:
sum |
---|
10,005,534 |
Returns the sum of all numeric value in a specified column.
Parameter | Type | Description |
---|---|---|
values | decimal, double | All of the values added together. |
query:
SELECT SUM(close_value)
FROM sales_pipeline
result:
sum |
---|
10,005,534 |