Apache Pinot Docs
latest
Ask or search…
K
Comment on page

ADD

This section contains reference documentation for the ADD function.
Sum of at least two values

Signature

ADD(col1, col2, col3...)

Usage Examples

These examples are based on the Batch Quick Start.
select homeRuns, baseOnBalls, ADD(homeRuns, baseOnBalls) AS total
from baseballStats
WHERE teamID = 'ML1'
AND yearID = 1956
AND playerName = 'Henry Louis'
homeRuns
baseOnBalls
total
26
37
63
Last modified 1yr ago