VistaDB 6
VistaDB / Developer's Guide / SQL Reference / Functions / Mathematical Functions / MINOF
In This Topic
    MINOF
    In This Topic
    Returns the lowest value of the input set.

    Remarks

    This is not the same function as MIN used in a select statement for a table scan. This is a math function only.

    Example

    SELECT MINOF( 10, 12, 9, 8 )
    
    RETURNS:  9
    
    
    See Also