This section contains reference documentation for the ADD function.
Last updated 2 years ago
Was this helpful?
Sum of at least two values
ADD(col1, col2, col3...)
These examples are based on the .
select homeRuns, baseOnBalls, ADD(homeRuns, baseOnBalls) AS total from baseballStats WHERE teamID = 'ML1' AND yearID = 1956 AND playerName = 'Henry Louis'
26
37
63