Uses of Class
com.querydsl.sql.WithinGroup

Packages that use WithinGroup
Package
Description
SQL/JDBC support
  • Uses of WithinGroup in com.querydsl.sql

    Methods in com.querydsl.sql that return WithinGroup
    Modifier and Type
    Method
    Description
    SQLExpressions.cumeDist(Expression<?>... args)
    As an aggregate function, CUME_DIST calculates, for a hypothetical row r identified by the arguments of the function and a corresponding sort specification, the relative position of row r among the rows in the aggregation group.
    SQLExpressions.cumeDist(Object... args)
    As an aggregate function, CUME_DIST calculates, for a hypothetical row r identified by the arguments of the function and a corresponding sort specification, the relative position of row r among the rows in the aggregation group.
    SQLExpressions.denseRank(Expression<?>... args)
    As an aggregate function, DENSE_RANK calculates the dense rank of a hypothetical row identified by the arguments of the function with respect to a given sort specification.
    SQLExpressions.denseRank(Object... args)
    As an aggregate function, DENSE_RANK calculates the dense rank of a hypothetical row identified by the arguments of the function with respect to a given sort specification.
    SQLExpressions.listagg(Expression<?> expr, String delimiter)
    LISTAGG orders data within each group specified in the ORDER BY clause and then concatenates the values of the measure column.
    static <T extends Number>
    WithinGroup<T>
    SQLExpressions.percentileCont(Expression<T> arg)
    Calculates a percentile based on a continuous distribution of the column value
    static <T extends Number>
    WithinGroup<T>
    SQLExpressions.percentileCont(T arg)
    Calculates a percentile based on a continuous distribution of the column value
    static <T extends Number>
    WithinGroup<T>
    SQLExpressions.percentileDisc(Expression<T> arg)
    PERCENTILE_DISC is an inverse distribution function that assumes a discrete distribution model.
    static <T extends Number>
    WithinGroup<T>
    SQLExpressions.percentileDisc(T arg)
    PERCENTILE_DISC is an inverse distribution function that assumes a discrete distribution model.
    SQLExpressions.percentRank(Expression<?>... args)
    As an aggregate function, PERCENT_RANK calculates, for a hypothetical row r identified by the arguments of the function and a corresponding sort specification, the rank of row r minus 1 divided by the number of rows in the aggregate group.
    SQLExpressions.percentRank(Object... args)
    As an aggregate function, PERCENT_RANK calculates, for a hypothetical row r identified by the arguments of the function and a corresponding sort specification, the rank of row r minus 1 divided by the number of rows in the aggregate group.
    SQLExpressions.rank(Expression<?>... args)
    As an aggregate function, RANK calculates the rank of a hypothetical row identified by the arguments of the function with respect to a given sort specification.
    SQLExpressions.rank(Object... args)
    As an aggregate function, RANK calculates the rank of a hypothetical row identified by the arguments of the function with respect to a given sort specification.