Skip to main content

Column.min

minvalues

Group: Math

Documentation

Returns a column of minimum on each row of self and values.

Arguments

  • values: list of columns or values to minimum with self, or a single column or value.

Examples

Get the minimum value in two columns.

      import Standard.Examples

example_min = Examples.decimal_column.min Examples.integer_column

Remarks

SQLite NULL handling

In SQLite, if any of the values is NULL, the result is NULL. In all other backends the NULL values are ignored.