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

    Remarks

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

    Example

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