MIN
Syntax
Description
Returns the minimum of arguments. Arguments must be of the same data type. Supports more than 255 arguments.
Examples
Data type | Column1 | Column2 | MIN returns |
---|---|---|---|
number | 1 | 2 | 1 |
string | a | b | a |
boolean | true | false | false |
date | Jun 22, 2012 06:22:34 | Jun 22, 2012 07:02:16 | Jun 22, 2012 06:22:34 |
Data type | Column1 | MIN returns |
---|---|---|
list | [44,55,22,88,11,55,77] | 11 |