This expression computes a min row according to the min column expression after applying the provided filter specification. If there is no minimum row, null will be returned.
Expression categories: Aggregate
Declared arguments
Expression - Column expression on which the min is computed. Null values are treated as if they have the largest value. Expression<ComparableType>
Output projection expression - Defines the projection expression that is applied on the minimum row before it is returned. Expression<AnyType>
optionalFilter condition - This parameter defines the filter specification that is applied on the rows contained within the window. The output of this expression will only reference rows which are not filtered by this parameter (i.e., where the condition evaluates to true). If no rows exist in state at the time of a trigger, null will be emitted. Expression<Boolean>