package aggregate
Type Members
- trait AggregateFunc extends Expression with Serializable
Base class of the Aggregate Functions.
Base class of the Aggregate Functions.
- Annotations
- @Evolving()
- Since
3.2.0
- final class Aggregation extends Serializable
Aggregation in SQL statement.
Aggregation in SQL statement.
- Annotations
- @Evolving()
- Since
3.2.0
- final class Count extends AggregateFunc
An aggregate function that returns the number of the specific row in a group.
An aggregate function that returns the number of the specific row in a group.
- Annotations
- @Evolving()
- Since
3.2.0
- final class CountStar extends AggregateFunc
An aggregate function that returns the number of rows in a group.
An aggregate function that returns the number of rows in a group.
- Annotations
- @Evolving()
- Since
3.2.0
- final class Max extends AggregateFunc
An aggregate function that returns the maximum value in a group.
An aggregate function that returns the maximum value in a group.
- Annotations
- @Evolving()
- Since
3.2.0
- final class Min extends AggregateFunc
An aggregate function that returns the minimum value in a group.
An aggregate function that returns the minimum value in a group.
- Annotations
- @Evolving()
- Since
3.2.0
- final class Sum extends AggregateFunc
An aggregate function that returns the summation of all the values in a group.
An aggregate function that returns the summation of all the values in a group.
- Annotations
- @Evolving()
- Since
3.2.0