Modifier and Type | Method and Description |
---|---|
SelectModel |
AbstractSubselectCondition.selectModel() |
Modifier and Type | Method and 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(BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SqlBuilder.select(Collection<BasicColumn> selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SqlBuilder.selectDistinct(BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SqlBuilder.selectDistinct(Collection<BasicColumn> selectList) |
Buildable<SelectModel> |
ExistsPredicate.selectModelBuilder() |
Modifier and Type | Method and Description |
---|---|
static ExistsPredicate |
SqlBuilder.exists(Buildable<SelectModel> selectModelBuilder) |
static ExistsPredicate |
ExistsPredicate.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 ExistsPredicate |
SqlBuilder.notExists(Buildable<SelectModel> selectModelBuilder) |
static ExistsPredicate |
ExistsPredicate.notExists(Buildable<SelectModel> selectModelBuilder) |
InsertSelectDSL |
SqlBuilder.InsertIntoNextStep.withSelectStatement(Buildable<SelectModel> selectModelBuilder) |
Constructor and Description |
---|
AbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder) |
Modifier and Type | Method and Description |
---|---|
SelectModel |
InsertSelectModel.selectModel() |
Modifier and Type | Method and Description |
---|---|
InsertSelectModel.Builder |
InsertSelectModel.Builder.withSelectModel(SelectModel selectModel) |
Modifier and Type | Method and Description |
---|---|
InsertSelectDSL |
InsertSelectDSL.InsertColumnGatherer.withSelectStatement(Buildable<SelectModel> selectModelBuilder) |
InsertSelectDSL |
InsertSelectDSL.SelectGatherer.withSelectStatement(Buildable<SelectModel> selectModelBuilder) |
Modifier and Type | Method and Description |
---|---|
SelectModel |
SelectModel.Builder.build() |
SelectModel |
SubQuery.selectModel() |
Modifier and Type | Method and 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(BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SelectDSL.select(Collection<BasicColumn> selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SelectDSL.selectDistinct(BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
SelectDSL.selectDistinct(Collection<BasicColumn> selectList) |
Modifier and Type | Method and Description |
---|---|
SubQuery.Builder |
SubQuery.Builder.withSelectModel(SelectModel selectModel) |
Modifier and Type | Method and Description |
---|---|
protected static SubQuery |
AbstractQueryExpressionDSL.buildSubQuery(Buildable<SelectModel> selectModel) |
protected static SubQuery |
AbstractQueryExpressionDSL.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) |
QueryExpressionDSL.JoinSpecificationStarter |
QueryExpressionDSL.fullJoin(Buildable<SelectModel> joinTable,
String tableAlias) |
QueryExpressionDSL.JoinSpecificationStarter |
QueryExpressionDSL.JoinSpecificationFinisher.fullJoin(Buildable<SelectModel> joinTable,
String tableAlias) |
T |
AbstractQueryExpressionDSL.fullJoin(Buildable<SelectModel> subQuery,
String tableAlias,
JoinCriterion onJoinCriterion,
List<JoinCriterion> andJoinCriteria) |
QueryExpressionDSL.JoinSpecificationStarter |
QueryExpressionDSL.join(Buildable<SelectModel> joinTable,
String tableAlias) |
QueryExpressionDSL.JoinSpecificationStarter |
QueryExpressionDSL.JoinSpecificationFinisher.join(Buildable<SelectModel> joinTable,
String tableAlias) |
T |
AbstractQueryExpressionDSL.join(Buildable<SelectModel> subQuery,
String tableAlias,
JoinCriterion onJoinCriterion,
List<JoinCriterion> andJoinCriteria) |
QueryExpressionDSL.JoinSpecificationStarter |
QueryExpressionDSL.leftJoin(Buildable<SelectModel> joinTable,
String tableAlias) |
QueryExpressionDSL.JoinSpecificationStarter |
QueryExpressionDSL.JoinSpecificationFinisher.leftJoin(Buildable<SelectModel> joinTable,
String tableAlias) |
T |
AbstractQueryExpressionDSL.leftJoin(Buildable<SelectModel> subQuery,
String tableAlias,
JoinCriterion onJoinCriterion,
List<JoinCriterion> andJoinCriteria) |
QueryExpressionDSL.JoinSpecificationStarter |
QueryExpressionDSL.rightJoin(Buildable<SelectModel> joinTable,
String tableAlias) |
QueryExpressionDSL.JoinSpecificationStarter |
QueryExpressionDSL.JoinSpecificationFinisher.rightJoin(Buildable<SelectModel> joinTable,
String tableAlias) |
T |
AbstractQueryExpressionDSL.rightJoin(Buildable<SelectModel> subQuery,
String tableAlias,
JoinCriterion onJoinCriterion,
List<JoinCriterion> andJoinCriteria) |
static <R> QueryExpressionDSL.FromGatherer<R> |
SelectDSL.select(Function<SelectModel,R> adapterFunction,
BasicColumn... selectList) |
static <R> QueryExpressionDSL.FromGatherer<R> |
SelectDSL.select(Function<SelectModel,R> adapterFunction,
Collection<BasicColumn> selectList) |
static <R> QueryExpressionDSL.FromGatherer<R> |
SelectDSL.selectDistinct(Function<SelectModel,R> adapterFunction,
BasicColumn... selectList) |
static <R> QueryExpressionDSL.FromGatherer<R> |
SelectDSL.selectDistinct(Function<SelectModel,R> adapterFunction,
Collection<BasicColumn> selectList) |
Constructor and Description |
---|
FromGatherer(Function<SelectModel,R> adapterFunction,
BasicColumn column) |
Modifier and Type | Method and Description |
---|---|
static SelectRenderer.Builder |
SelectRenderer.withSelectModel(SelectModel selectModel) |
SelectRenderer.Builder |
SelectRenderer.Builder.withSelectModel(SelectModel selectModel) |
Modifier and Type | Method and Description |
---|---|
UpdateDSL<R> |
UpdateDSL.SetClauseFinisher.equalTo(Buildable<SelectModel> buildable) |
Modifier and Type | Method and Description |
---|---|
SelectModel |
SelectMapping.selectModel() |
Modifier and Type | Method and Description |
---|---|
static SelectMapping |
SelectMapping.of(SqlColumn<?> column,
Buildable<SelectModel> selectModelBuilder) |
Modifier and Type | Method and Description |
---|---|
static SelectStatementProvider |
MyBatis3Utils.countFrom(CountDSL<SelectModel> start,
CountDSLCompleter completer) |
static long |
MyBatis3Utils.countFrom(ToLongFunction<SelectStatementProvider> mapper,
CountDSL<SelectModel> start,
CountDSLCompleter completer) |
static SelectStatementProvider |
MyBatis3Utils.select(QueryExpressionDSL<SelectModel> start,
SelectDSLCompleter completer) |
static <R> List<R> |
MyBatis3Utils.selectList(Function<SelectStatementProvider,List<R>> mapper,
QueryExpressionDSL<SelectModel> start,
SelectDSLCompleter completer) |
static <R> R |
MyBatis3Utils.selectOne(Function<SelectStatementProvider,R> mapper,
QueryExpressionDSL<SelectModel> start,
SelectDSLCompleter completer) |
Modifier and Type | Method and Description |
---|---|
long |
NamedParameterJdbcTemplateExtensions.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) |
Constructor and Description |
---|
SpringBatchCursorReaderSelectModel(SelectModel selectModel) |
SpringBatchPagingReaderSelectModel(SelectModel selectModel) |
Modifier and Type | Method and Description |
---|---|
static <T> IsNotInWithSubselect<T> |
IsNotInWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsNotEqualToWithSubselect<T> |
IsNotEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsLessThanWithSubselect<T> |
IsLessThanWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsGreaterThanWithSubselect<T> |
IsGreaterThanWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsGreaterThanOrEqualToWithSubselect<T> |
IsGreaterThanOrEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsEqualToWithSubselect<T> |
IsEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsInWithSubselect<T> |
IsInWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
static <T> IsLessThanOrEqualToWithSubselect<T> |
IsLessThanOrEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) |
Constructor and 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) |
Copyright © 2016–2021 MyBatis.org. All rights reserved.