613-518-1166 info@zimdatabases.com

ZIM Language Reference

$min

< All Topics

$min

Returns the minimum value of a set of values.

Syntax

$max(expression)

Parameters

expression

any expression

Return Value

The value of the selected instance of expression.

Comments

Use $min to find the smallest value among members of a set. Instances of expression that are $Null are ignored.

Expression is often a WHERE expression that includes only selected values in the operation. If the WHERE expression (expr1 WHERE expr2) is true, the expr1 value is included in the operation; otherwise, expression is considered $Null and is ignored.

Example

compute Employees where DeptName = “Sales”
  evaluate (let MaxSal = $max(Salary))
      (let MinSal = $min(Salary))
      (let MaxSalF = $max(Salary where Sex = “F”))
      (let MinSalF = $min(Salary where Sex = “F”))

At the end of this operation, MaxSal contains the highest salary paid to any employee in Sales; MinSal contains the lowest salary paid to any employee in Sales; MaxSalF contains the highest salary paid to any female employee in Sales; and, MinSalF contains the lowest salary paid to any female employee in Sales.

 

See Also

$average

$count

$max

$total

About Functional Expressions

WHERE

Was this article helpful?
0 out Of 5 Stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
How can we improve this article?
Table of Contents