SUM_IF (window)

Function SUM_IF is also found in the following categories: Aggregate functions.

Syntax

SUM_IF( expression, condition
        TOTAL | WITHIN ... | AMONG ...
      )

More info:

SUM_IF( expression, condition
        TOTAL | WITHIN ... | AMONG ...
        [ BEFORE FILTER BY ... ]
      )

More info:

Description

Returns the sum of all the expression values that meet the condition condition. Applicable to numeric data types only.

Argument types:

  • expressionFractional number | Integer
  • conditionBoolean

Return type: Same type as (expression)

Examples

SUM_IF([Profit], [Category] = 'Office Supplies' TOTAL)
SUM_IF([Profit], [Category] = 'Office Supplies' WITHIN [Date])
SUM_IF([Profit], [Category] = 'Office Supplies' AMONG [Date])

Data source support

ClickHouse 19.13, Microsoft SQL Server 2017 (14.0), MySQL 5.6, PostgreSQL 9.3.

Previous