Table of Contents

Search

  1. Preface
  2. Function reference
  3. Constants
  4. Operators
  5. Dates
  6. Functions
  7. System variables
  8. Datatype reference

Function Reference

Function Reference

MIN (Numbers)

MIN (Numbers)

Returns the smallest numeric value found in a field or group. You can apply a filter to limit the rows in the search. You can also use MIN to return the latest date or the lowest string value in a field or group.
You can nest only one other aggregate function within MIN, and the nested function must return a numeric data type.
You cannot nest aggregate functions in advanced mode.
Use only in
mapping
tasks.

Syntax

MIN(
numeric_value
[,
filter_condition
] )
Argument
Required/
Optional
Description
numeric_value
Required
Numeric data types. Passes the values for which you want to return minimum value. You can enter any valid transformation expression.
filter_condition
Optional
Limits the rows in the search. The filter condition must be a numeric value or evaluate to TRUE, FALSE, or NULL. You can enter any valid transformation expression.

Return Value

Numeric value.
NULL if all values passed to the function are NULL, or if no rows are selected (for example, the filter condition evaluates to FALSE or NULL for all rows).

Nulls

If a single value is NULL, MIN ignores it. However, if all values passed from the field are NULL, MIN returns NULL.

Group By

MIN groups values based on group by fields you define in the transformation, returning one result for each group.
If there is no group by field, MIN treats all rows as one group, returning one value.

Example

The following expression returns the minimum price for flashlights:
MIN ( PRICE, ITEM_NAME='Flashlight' )
ITEM_NAME
PRICE
Flashlight
10.00
Regulator System
360.00
Flashlight
55.00
Diving Hood
79.00
Halogen Flashlight
162.00
Flashlight
85.00
Flashlight
NULL
RETURN VALUE:
10.00

0 COMMENTS

We’d like to hear from you!