IMax Class
Exposes API's to returns the maximum value of all values in the group. The maximum value is the value that would be returned last in an ORDER BY on the same column. Aggregate max() returns NULL if and only if there are no non-NULL values in the group.
Item Index
Methods
and
                                            
                                                    - 
                                                                    column
Used to specify AND condition between where clause.
Parameters:
- 
                                                                    columnStringName of column on which condition need to be specified. 
Returns:
IMaxClause Interface.
column
                                            
                                                    - 
                                                                    column
Used to provide name of column for which maximum will be calculated.
Parameters:
- 
                                                                    columnStringName of column. 
Returns:
IMax Interface.
execute
                                            
                                                    ()
                                            
                                                    
                                                        Object
                                                    
                                            
                                            
                                            
                                            
                                            
                                            
                                            
                                                
                                            
                                                Used to get maximum, this method should be called in last to calculate maximum.
Returns:
Return maximum.
executeAsync
                                            
                                                    - 
                                                                    callback
Used to get maximum asynchronous, this method should be called in last to calculate maximum.
Parameters:
- 
                                                                    callbackCallbackRequest Callback 
groupBy
                                            
                                                    - 
                                                                    columns
Used to specify GROUP BY statement in conjunction with the aggregate functions to group the result-set by one or more columns.
Parameters:
- 
                                                                    columnsArrayName of columns. 
Returns:
IMax Interface.
having
                                            
                                                    - 
                                                                    column
Used to specify HAVING clause to SQL because the WHERE keyword could not be used with aggregate functions.
Parameters:
- 
                                                                    columnStringName of column on which condition need to be applied. 
Returns:
IMaxClause Interface.
havingClause
                                            
                                                    - 
                                                                    havingClause
Used to provide manually created Where clause, instead of using API's.
Parameters:
- 
                                                                    havingClauseStringWhere clause. 
Returns:
IMax Interface.
or
                                            
                                                    - 
                                                                    column
Used to specify OR condition between where clause.
Parameters:
- 
                                                                    columnStringName of column on which condition need to be specified. 
Returns:
IMaxClause Interface.
where
                                            
                                                    - 
                                                                    column
Column name of which condition will be specified.
Parameters:
- 
                                                                    columnStringName of column. 
Returns:
IMaxClause Interface.
 Siminov Hybrid
            Siminov Hybrid