Uses of Class
de.jaggl.sqlbuilder.core.queries.Select
-
Packages that use Select Package Description de.jaggl.sqlbuilder.core.dialect de.jaggl.sqlbuilder.core.queries -
-
Uses of Select in de.jaggl.sqlbuilder.core.dialect
Methods in de.jaggl.sqlbuilder.core.dialect with parameters of type Select Modifier and Type Method Description protected voidDefaultDialect. appendSelectStatement(StringBuilder builder, Select select, BuildingContext context, Indentation indentation)protected voidSybaseDialect. appendSelectStatement(StringBuilder builder, Select select, BuildingContext context, Indentation indentation)StringDefaultDialect. build(Select select, Indentation indentation)StringDialect. build(Select select, Indentation indentation) -
Uses of Select in de.jaggl.sqlbuilder.core.queries
Methods in de.jaggl.sqlbuilder.core.queries that return Select Modifier and Type Method Description static SelectSelect. copy(Select select)SelectSelect. distinct()SelectSelect. distinct(boolean doDistinct)SelectSelect. from(Queryable table)SelectSelect. fullOuterJoin(JoinableTable table)SelectSelect. groupBy(Column... columns)SelectSelect. groupBy(String... plainGroupBys)SelectSelect. having(Condition condition)SelectSelect. havingNot(Condition condition)SelectSelect. innerJoin(JoinableTable table)SelectSelect. join(JoinableTable table)SelectSelect. leftJoin(JoinableTable table)SelectSelect. leftOuterJoin(JoinableTable table)SelectSelect. limit(long limit)SelectSelect. limit(long limit, long offset)SelectSelect. orderAscendingBy(Column column)SelectSelect. orderBy(Column column)SelectSelect. orderBy(Column column, OrderDirection direction)SelectSelect. orderDescendingBy(Column column)SelectSelect. rightJoin(JoinableTable table)SelectSelect. rightOuterJoin(JoinableTable table)static SelectQueries. select(Selectable... selectables)Creates aSelectwith the givenSelectablesSelectSelect. select(Selectable... furtherSelectables)static SelectQueries. selectDistinct(Selectable... selectables)Creates aSelectwith the givenSelectables and the DISTINCT-keywordSelectSelect. where(Condition condition)SelectSelect. whereNot(Condition condition)Methods in de.jaggl.sqlbuilder.core.queries with parameters of type Select Modifier and Type Method Description static voidSelect. clearGroupBys(Select select)static voidSelect. clearHavings(Select select)static voidSelect. clearJoins(Select select)static voidSelect. clearLimit(Select select)static voidSelect. clearOrdering(Select select)static voidSelect. clearSelects(Select select)static voidSelect. clearWheres(Select select)static SelectSelect. copy(Select select)
-