Package org.mybatis.dynamic.sql.select
Class QueryExpressionDSL.GroupByFinisher
- java.lang.Object
-
- org.mybatis.dynamic.sql.select.QueryExpressionDSL.GroupByFinisher
-
- All Implemented Interfaces:
Buildable<R>
- Enclosing class:
- QueryExpressionDSL<R>
public class QueryExpressionDSL.GroupByFinisher extends java.lang.Object implements Buildable<R>
-
-
Constructor Summary
Constructors Constructor Description GroupByFinisher()
-
Method Summary
Modifier and Type Method Description Rbuild()SelectDSL.FetchFirstFinisherfetchFirst(long fetchFirstRows)SelectDSL.LimitFinisherlimit(long limit)SelectDSL.OffsetFirstFinisheroffset(long offset)SelectDSL<R>orderBy(SortSpecification... columns)QueryExpressionDSL.UnionBuilderunion()QueryExpressionDSL.UnionBuilderunionAll()
-
-
-
Method Detail
-
orderBy
public SelectDSL<R> orderBy(SortSpecification... columns)
-
union
public QueryExpressionDSL.UnionBuilder union()
-
unionAll
public QueryExpressionDSL.UnionBuilder unionAll()
-
limit
public SelectDSL.LimitFinisher limit(long limit)
-
offset
public SelectDSL.OffsetFirstFinisher offset(long offset)
-
fetchFirst
public SelectDSL.FetchFirstFinisher fetchFirst(long fetchFirstRows)
-
-