3.2.39. MIN(number[,number]...)

Like MAX(), except that the lowest numerical value is returned.
For more information, see MAX().

     MAX(5, 4, 3, 1, 2)  –>   ‘1’
     MAX(6)              –>   ‘6’
     MAX(-4, .001E3, 4)  –>   ‘-4’
     MAX(1, 2, 05.0E-1, 4)    –>   ‘0.50’



PREV NEXT