mode
This section contains reference documentation for the mode function.
Signature
Usage Examples
select mode(yearID) AS value
from baseballStats
WHERE AtBatting != 0 AND yearID > 2001value
select mode(yearID, 'AVG') AS value
from baseballStats
WHERE AtBatting != 0 AND yearID > 2001value
select mode(yearID, 'MIN') AS value
from baseballStats
WHERE AtBatting != 0 AND yearID > 2001value
value
Last updated
Was this helpful?

