Klasse Max

Alle implementierten Schnittstellen:
Column, SQLFunction

public class Max extends AggregateFunction
SQL99 Standard max function.
Version:
$Id: Max.java 1848281 2018-12-06 10:48:36Z tv $
  • Konstruktordetails

    • Max

      public Max(Column column)
      Construct an MAX function class with the column to calculate the maximum from.
      Parameter:
      column - the Column to calculate the maximum from.
    • Max

      public Max(String sqlExpression)
      Construct an MAX function class with an SQL expression to calculate the maximum from.
      Parameter:
      sqlExpression - the SQL expression to calculate the maximum from.
    • Max

      public Max(Column column, boolean distinct)
      Construct an MAX function class with the column to calculate the maximum from and possibly a distinct modifier.
      Parameter:
      column - the Column to calculate the maximum from.
      distinct - whether to calculate the maximum from only distinct values.
  • Methodendetails