Returns the minimum element in <arr>.
<arr>
ARRAY_MIN(<arr>)
SELECT ARRAY_MIN([ 1, 2, 3, 4 ]) AS res;
Returns: 1
1