EXPRMAX
This section contains reference documentation for the EXPRMAX function.
Last updated
Was this helpful?
This section contains reference documentation for the EXPRMAX function.
Projects one or more columns from the row where a measuring column has its maximum value. Similar to ARG_MAX but supports projecting multiple expression columns at once.
EXPRMAX(measureCol, exprCol1, exprCol2, ...)
Parameters:
measureCol
The column whose maximum value determines which row to project from
exprCol1, exprCol2, ...
One or more columns to project from the row with the maximum measure
These examples are based on the Batch Quick Start.
select EXPRMAX(hits, playerName, yearID) AS value
from baseballStats[Ichiro Suzuki, 2004]
Last updated
Was this helpful?
Was this helpful?

