arrayMax
Returns the highest value in the array.
Arguments
Array of numeric values.
Examples
Find the highest score in an array:
FROM game_results
SELECT {
player_id,
max_score = arrayMax(scores)
}