arrayMin
Returns the lowest value in the array.
Arguments
Array of numeric values.
Examples
Find the lowest temperature in an array:
FROM weather_data
SELECT {
date,
min_temp = arrayMin(temperatures)
}