Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - Database Management and Reference » UltraLite SQL Function Reference » Alphabetical list of functions

GETDATE function [Date and time] Next Page

GREATER function [Miscellaneous]


Returns the greater of two parameter values.

Syntax

GREATER( expression-1, expression-2 )

Parameters

expression-1    The first parameter value to be compared.

expression-2    The second parameter value to be compared.

Remarks

If the parameters are equal, the first is returned.

See also
Standards and compatibility
Example

The following statement returns the value 10.

SELECT GREATER( 10, 5 ) FROM dummy;