mult
This section contains reference documentation for the MULT function.
Last updated
Was this helpful?
This section contains reference documentation for the MULT function.
Last updated
Was this helpful?
Was this helpful?
Product of at least two values
MULT(col1, col2, col3...)
These examples are based on the Batch Quick Start.
select homeRuns, baseOnBalls, MULT(homeRuns, baseOnBalls) AS total
from baseballStats
WHERE teamID = 'ML1'
AND yearID = 1956
AND playerName = 'Henry Louis'
26
37
962