MIN

The MIN function returns the minimum value of all numbers in the set (e.g., Salary Paid).

Syntax

SELECT MIN(…)
SELECT MIN(fact)

Examples

The MIN of the Opportunity Amount fact is the lowest opportunity amount value on record:

SELECT MIN(Opportunity_Amount)
SELECT MIN(metric that uses fact)