Uses of Class
org.mybatis.dynamic.sql.select.SelectModel
-
-
Uses of SelectModel in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql that return SelectModel Modifier and Type Method Description SelectModelAbstractSubselectCondition. selectModel()Methods in org.mybatis.dynamic.sql that return types with arguments of type SelectModel Modifier and Type Method Description static CountDSL.FromGatherer<SelectModel>SqlBuilder. countColumn(BasicColumn column)Renders as select count(column) from table...static CountDSL.FromGatherer<SelectModel>SqlBuilder. countDistinctColumn(BasicColumn column)Renders as select count(distinct column) from table...static CountDSL<SelectModel>SqlBuilder. countFrom(SqlTable table)Renders as select count(*) from table...static QueryExpressionDSL.FromGatherer<SelectModel>SqlBuilder. select(Collection<BasicColumn> selectList)static QueryExpressionDSL.FromGatherer<SelectModel>SqlBuilder. select(BasicColumn... selectList)static QueryExpressionDSL.FromGatherer<SelectModel>SqlBuilder. selectDistinct(Collection<BasicColumn> selectList)static QueryExpressionDSL.FromGatherer<SelectModel>SqlBuilder. selectDistinct(BasicColumn... selectList)Buildable<SelectModel>ExistsPredicate. selectModelBuilder()Method parameters in org.mybatis.dynamic.sql with type arguments of type SelectModel Modifier and Type Method Description static ExistsPredicateExistsPredicate. exists(Buildable<SelectModel> selectModelBuilder)static ExistsPredicateSqlBuilder. exists(Buildable<SelectModel> selectModelBuilder)static <T> IsEqualToWithSubselect<T>SqlBuilder. isEqualTo(Buildable<SelectModel> selectModelBuilder)static <T> IsGreaterThanWithSubselect<T>SqlBuilder. isGreaterThan(Buildable<SelectModel> selectModelBuilder)static <T> IsGreaterThanOrEqualToWithSubselect<T>SqlBuilder. isGreaterThanOrEqualTo(Buildable<SelectModel> selectModelBuilder)static <T> IsInWithSubselect<T>SqlBuilder. isIn(Buildable<SelectModel> selectModelBuilder)static <T> IsLessThanWithSubselect<T>SqlBuilder. isLessThan(Buildable<SelectModel> selectModelBuilder)static <T> IsLessThanOrEqualToWithSubselect<T>SqlBuilder. isLessThanOrEqualTo(Buildable<SelectModel> selectModelBuilder)static <T> IsNotEqualToWithSubselect<T>SqlBuilder. isNotEqualTo(Buildable<SelectModel> selectModelBuilder)static <T> IsNotInWithSubselect<T>SqlBuilder. isNotIn(Buildable<SelectModel> selectModelBuilder)static ExistsPredicateExistsPredicate. notExists(Buildable<SelectModel> selectModelBuilder)static ExistsPredicateSqlBuilder. notExists(Buildable<SelectModel> selectModelBuilder)InsertSelectDSLSqlBuilder.InsertIntoNextStep. withSelectStatement(Buildable<SelectModel> selectModelBuilder)Constructor parameters in org.mybatis.dynamic.sql with type arguments of type SelectModel Constructor Description AbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder) -
Uses of SelectModel in org.mybatis.dynamic.sql.insert
Methods in org.mybatis.dynamic.sql.insert that return SelectModel Modifier and Type Method Description SelectModelInsertSelectModel. selectModel()Methods in org.mybatis.dynamic.sql.insert with parameters of type SelectModel Modifier and Type Method Description InsertSelectModel.BuilderInsertSelectModel.Builder. withSelectModel(SelectModel selectModel)Method parameters in org.mybatis.dynamic.sql.insert with type arguments of type SelectModel Modifier and Type Method Description InsertSelectDSLInsertSelectDSL.InsertColumnGatherer. withSelectStatement(Buildable<SelectModel> selectModelBuilder)InsertSelectDSLInsertSelectDSL.SelectGatherer. withSelectStatement(Buildable<SelectModel> selectModelBuilder) -
Uses of SelectModel in org.mybatis.dynamic.sql.select
Methods in org.mybatis.dynamic.sql.select that return SelectModel Modifier and Type Method Description SelectModelSelectModel.Builder. build()SelectModelSubQuery. selectModel()Methods in org.mybatis.dynamic.sql.select that return types with arguments of type SelectModel Modifier and Type Method Description static CountDSL.FromGatherer<SelectModel>CountDSL. count(BasicColumn column)static CountDSL.FromGatherer<SelectModel>CountDSL. countDistinct(BasicColumn column)static CountDSL<SelectModel>CountDSL. countFrom(SqlTable table)static QueryExpressionDSL.FromGatherer<SelectModel>SelectDSL. select(Collection<BasicColumn> selectList)static QueryExpressionDSL.FromGatherer<SelectModel>SelectDSL. select(BasicColumn... selectList)static QueryExpressionDSL.FromGatherer<SelectModel>SelectDSL. selectDistinct(Collection<BasicColumn> selectList)static QueryExpressionDSL.FromGatherer<SelectModel>SelectDSL. selectDistinct(BasicColumn... selectList)Methods in org.mybatis.dynamic.sql.select with parameters of type SelectModel Modifier and Type Method Description SubQuery.BuilderSubQuery.Builder. withSelectModel(SelectModel selectModel)Method parameters in org.mybatis.dynamic.sql.select with type arguments of type SelectModel Modifier and Type Method Description protected static SubQueryAbstractQueryExpressionDSL. buildSubQuery(Buildable<SelectModel> selectModel)protected static SubQueryAbstractQueryExpressionDSL. buildSubQuery(Buildable<SelectModel> selectModel, String alias)static <R> CountDSL.FromGatherer<R>CountDSL. count(Function<SelectModel,R> adapterFunction, BasicColumn column)static <R> CountDSL.FromGatherer<R>CountDSL. countDistinct(Function<SelectModel,R> adapterFunction, BasicColumn column)static <R> CountDSL<R>CountDSL. countFrom(Function<SelectModel,R> adapterFunction, SqlTable table)QueryExpressionDSL<R>QueryExpressionDSL.FromGatherer. from(Buildable<SelectModel> select)QueryExpressionDSL<R>QueryExpressionDSL.FromGatherer. from(Buildable<SelectModel> select, String tableAlias)TAbstractQueryExpressionDSL. fullJoin(Buildable<SelectModel> subQuery, String tableAlias, JoinCriterion onJoinCriterion, List<JoinCriterion> andJoinCriteria)QueryExpressionDSL.JoinSpecificationStarterQueryExpressionDSL. fullJoin(Buildable<SelectModel> joinTable, String tableAlias)QueryExpressionDSL.JoinSpecificationStarterQueryExpressionDSL.JoinSpecificationFinisher. fullJoin(Buildable<SelectModel> joinTable, String tableAlias)TAbstractQueryExpressionDSL. join(Buildable<SelectModel> subQuery, String tableAlias, JoinCriterion onJoinCriterion, List<JoinCriterion> andJoinCriteria)QueryExpressionDSL.JoinSpecificationStarterQueryExpressionDSL. join(Buildable<SelectModel> joinTable, String tableAlias)QueryExpressionDSL.JoinSpecificationStarterQueryExpressionDSL.JoinSpecificationFinisher. join(Buildable<SelectModel> joinTable, String tableAlias)TAbstractQueryExpressionDSL. leftJoin(Buildable<SelectModel> subQuery, String tableAlias, JoinCriterion onJoinCriterion, List<JoinCriterion> andJoinCriteria)QueryExpressionDSL.JoinSpecificationStarterQueryExpressionDSL.JoinSpecificationFinisher. leftJoin(Buildable<SelectModel> joinTable, String tableAlias)QueryExpressionDSL.JoinSpecificationStarterQueryExpressionDSL. leftJoin(Buildable<SelectModel> joinTable, String tableAlias)TAbstractQueryExpressionDSL. rightJoin(Buildable<SelectModel> subQuery, String tableAlias, JoinCriterion onJoinCriterion, List<JoinCriterion> andJoinCriteria)QueryExpressionDSL.JoinSpecificationStarterQueryExpressionDSL.JoinSpecificationFinisher. rightJoin(Buildable<SelectModel> joinTable, String tableAlias)QueryExpressionDSL.JoinSpecificationStarterQueryExpressionDSL. rightJoin(Buildable<SelectModel> joinTable, String tableAlias)static <R> QueryExpressionDSL.FromGatherer<R>SelectDSL. select(Function<SelectModel,R> adapterFunction, Collection<BasicColumn> selectList)static <R> QueryExpressionDSL.FromGatherer<R>SelectDSL. select(Function<SelectModel,R> adapterFunction, BasicColumn... selectList)static <R> QueryExpressionDSL.FromGatherer<R>SelectDSL. selectDistinct(Function<SelectModel,R> adapterFunction, Collection<BasicColumn> selectList)static <R> QueryExpressionDSL.FromGatherer<R>SelectDSL. selectDistinct(Function<SelectModel,R> adapterFunction, BasicColumn... selectList)Constructor parameters in org.mybatis.dynamic.sql.select with type arguments of type SelectModel Constructor Description FromGatherer(Function<SelectModel,R> adapterFunction, BasicColumn column) -
Uses of SelectModel in org.mybatis.dynamic.sql.select.render
Methods in org.mybatis.dynamic.sql.select.render with parameters of type SelectModel Modifier and Type Method Description SelectRenderer.BuilderSelectRenderer.Builder. withSelectModel(SelectModel selectModel)static SelectRenderer.BuilderSelectRenderer. withSelectModel(SelectModel selectModel) -
Uses of SelectModel in org.mybatis.dynamic.sql.update
Method parameters in org.mybatis.dynamic.sql.update with type arguments of type SelectModel Modifier and Type Method Description UpdateDSL<R>UpdateDSL.SetClauseFinisher. equalTo(Buildable<SelectModel> buildable) -
Uses of SelectModel in org.mybatis.dynamic.sql.util
Methods in org.mybatis.dynamic.sql.util that return SelectModel Modifier and Type Method Description SelectModelSelectMapping. selectModel()Method parameters in org.mybatis.dynamic.sql.util with type arguments of type SelectModel Modifier and Type Method Description static SelectMappingSelectMapping. of(SqlColumn<?> column, Buildable<SelectModel> selectModelBuilder) -
Uses of SelectModel in org.mybatis.dynamic.sql.util.mybatis3
Method parameters in org.mybatis.dynamic.sql.util.mybatis3 with type arguments of type SelectModel Modifier and Type Method Description static longMyBatis3Utils. countFrom(ToLongFunction<SelectStatementProvider> mapper, CountDSL<SelectModel> start, CountDSLCompleter completer)static SelectStatementProviderMyBatis3Utils. countFrom(CountDSL<SelectModel> start, CountDSLCompleter completer)static SelectStatementProviderMyBatis3Utils. select(QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer)static <R> List<R>MyBatis3Utils. selectList(Function<SelectStatementProvider,List<R>> mapper, QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer)static <R> RMyBatis3Utils. selectOne(Function<SelectStatementProvider,R> mapper, QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer) -
Uses of SelectModel in org.mybatis.dynamic.sql.util.spring
Method parameters in org.mybatis.dynamic.sql.util.spring with type arguments of type SelectModel Modifier and Type Method Description longNamedParameterJdbcTemplateExtensions. count(Buildable<SelectModel> countStatement)<T> List<T>NamedParameterJdbcTemplateExtensions. selectList(Buildable<SelectModel> selectStatement, org.springframework.jdbc.core.RowMapper<T> rowMapper)<T> Optional<T>NamedParameterJdbcTemplateExtensions. selectOne(Buildable<SelectModel> selectStatement, org.springframework.jdbc.core.RowMapper<T> rowMapper) -
Uses of SelectModel in org.mybatis.dynamic.sql.util.springbatch
Constructors in org.mybatis.dynamic.sql.util.springbatch with parameters of type SelectModel Constructor Description SpringBatchCursorReaderSelectModel(SelectModel selectModel)SpringBatchPagingReaderSelectModel(SelectModel selectModel) -
Uses of SelectModel in org.mybatis.dynamic.sql.where.condition
Method parameters in org.mybatis.dynamic.sql.where.condition with type arguments of type SelectModel Modifier and Type Method Description static <T> IsEqualToWithSubselect<T>IsEqualToWithSubselect. of(Buildable<SelectModel> selectModelBuilder)static <T> IsGreaterThanOrEqualToWithSubselect<T>IsGreaterThanOrEqualToWithSubselect. of(Buildable<SelectModel> selectModelBuilder)static <T> IsGreaterThanWithSubselect<T>IsGreaterThanWithSubselect. of(Buildable<SelectModel> selectModelBuilder)static <T> IsInWithSubselect<T>IsInWithSubselect. of(Buildable<SelectModel> selectModelBuilder)static <T> IsLessThanOrEqualToWithSubselect<T>IsLessThanOrEqualToWithSubselect. of(Buildable<SelectModel> selectModelBuilder)static <T> IsLessThanWithSubselect<T>IsLessThanWithSubselect. of(Buildable<SelectModel> selectModelBuilder)static <T> IsNotEqualToWithSubselect<T>IsNotEqualToWithSubselect. of(Buildable<SelectModel> selectModelBuilder)static <T> IsNotInWithSubselect<T>IsNotInWithSubselect. of(Buildable<SelectModel> selectModelBuilder)Constructor parameters in org.mybatis.dynamic.sql.where.condition with type arguments of type SelectModel Constructor Description IsEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder)IsGreaterThanOrEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder)IsGreaterThanWithSubselect(Buildable<SelectModel> selectModelBuilder)IsInWithSubselect(Buildable<SelectModel> selectModelBuilder)IsLessThanOrEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder)IsLessThanWithSubselect(Buildable<SelectModel> selectModelBuilder)IsNotEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder)IsNotInWithSubselect(Buildable<SelectModel> selectModelBuilder)
-