Uses of Interface
org.jooq.TableLike
-
Packages that use TableLike Package Description org.jooq Theorg.jooqpackage contains jOOQ's public API.org.jooq.impl Theorg.jooq.implpackage contains jOOQ's implementation classes. -
-
Uses of TableLike in org.jooq
Subinterfaces of TableLike in org.jooq Modifier and Type Interface Description interfaceCommonTableExpression<R extends Record>A common table expression.interfaceSelect<R extends Record>ASELECTstatement.interfaceSelectConditionStep<R extends Record>interfaceSelectConnectByAfterStartWithConditionStep<R extends Record>interfaceSelectConnectByConditionStep<R extends Record>interfaceSelectConnectByStep<R extends Record>interfaceSelectDistinctOnStep<R extends Record>interfaceSelectFinalStep<R extends Record>interfaceSelectForUpdateOfStep<R extends Record>interfaceSelectForUpdateStep<R extends Record>interfaceSelectForUpdateWaitStep<R extends Record>interfaceSelectFromStep<R extends Record>interfaceSelectGroupByStep<R extends Record>interfaceSelectHavingConditionStep<R extends Record>interfaceSelectHavingStep<R extends Record>interfaceSelectIntoStep<R extends Record>interfaceSelectJoinStep<R extends Record>interfaceSelectLimitAfterOffsetStep<R extends Record>interfaceSelectLimitPercentAfterOffsetStep<R extends Record>interfaceSelectLimitPercentStep<R extends Record>interfaceSelectLimitStep<R extends Record>interfaceSelectOffsetStep<R extends Record>interfaceSelectOnConditionStep<R extends Record>interfaceSelectOptionalOnStep<R extends Record>interfaceSelectOptionStep<R extends Record>interfaceSelectOrderByStep<R extends Record>interfaceSelectQualifyConditionStep<R extends Record>interfaceSelectQualifyStep<R extends Record>interfaceSelectQuery<R extends Record>ASELECTstatement (model API).interfaceSelectSeekLimitStep<R extends Record>interfaceSelectSeekStep1<R extends Record,T1>interfaceSelectSeekStep10<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>interfaceSelectSeekStep11<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>interfaceSelectSeekStep12<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>interfaceSelectSeekStep13<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>interfaceSelectSeekStep14<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>interfaceSelectSeekStep15<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>interfaceSelectSeekStep16<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>interfaceSelectSeekStep17<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>interfaceSelectSeekStep18<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>interfaceSelectSeekStep19<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>interfaceSelectSeekStep2<R extends Record,T1,T2>interfaceSelectSeekStep20<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>interfaceSelectSeekStep21<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>interfaceSelectSeekStep22<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>interfaceSelectSeekStep3<R extends Record,T1,T2,T3>interfaceSelectSeekStep4<R extends Record,T1,T2,T3,T4>interfaceSelectSeekStep5<R extends Record,T1,T2,T3,T4,T5>interfaceSelectSeekStep6<R extends Record,T1,T2,T3,T4,T5,T6>interfaceSelectSeekStep7<R extends Record,T1,T2,T3,T4,T5,T6,T7>interfaceSelectSeekStep8<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>interfaceSelectSeekStep9<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>interfaceSelectSeekStepN<R extends Record>interfaceSelectSelectStep<R extends Record>interfaceSelectStartWithStep<R extends Record>interfaceSelectUnionStep<R extends Record>interfaceSelectWhereStep<R extends Record>interfaceSelectWindowStep<R extends Record>interfaceSelectWithTiesAfterOffsetStep<R extends Record>interfaceSelectWithTiesStep<R extends Record>interfaceTable<R extends Record>A table.interfaceTableOnConditionStep<R extends Record>An intermediate (optional) type for the construction of aJOINclause, where the join criteria is added using anONclause (with aCondition.interfaceTableOptionalOnStep<R extends Record>Methods in org.jooq with parameters of type TableLike Modifier and Type Method Description voidSelectQuery. addFrom(TableLike<?> from)Add tables to the table product.voidSelectQuery. addFrom(TableLike<?>... from)Add tables to the table product.voidUpdateQuery. addFrom(TableLike<?> from)Add tables to the table product.voidUpdateQuery. addFrom(TableLike<?>... from)Add tables to the table product.voidSelectQuery. addJoin(TableLike<?> table, Condition condition)Joins the existing table product to a new table using a condition, connecting them with each other withOperator.AND.voidSelectQuery. addJoin(TableLike<?> table, Condition... conditions)Joins the existing table product to a new table using a condition, connecting them with each other withOperator.AND.voidSelectQuery. addJoin(TableLike<?> table, JoinType type, Condition condition)Joins the existing table product to a new table using a condition, connecting them with each other withOperator.AND.voidSelectQuery. addJoin(TableLike<?> table, JoinType type, Condition... conditions)Joins the existing table product to a new table using a condition, connecting them with each other withOperator.AND.voidSelectQuery. addJoin(TableLike<?> table, JoinType type, Condition[] conditions, Field<?>[] partitionBy)Joins the existing table product to a new table using conditions, connecting them with each other withOperator.AND.voidSelectQuery. addJoin(TableLike<?> table, JoinType type, Condition conditions, Field<?>[] partitionBy)Joins the existing table product to a new table using conditions, connecting them with each other withOperator.AND.voidSelectQuery. addJoinOnKey(TableLike<?> table, JoinType type)Joins the existing table product to a new table using a foreign key.voidSelectQuery. addJoinOnKey(TableLike<?> table, JoinType type, ForeignKey<?,?> key)Joins the existing table product to a new table using a foreign key.voidSelectQuery. addJoinOnKey(TableLike<?> table, JoinType type, TableField<?,?>... keyFields)Joins the existing table product to a new table using a foreign key.voidSelectQuery. addJoinUsing(TableLike<?> table, java.util.Collection<? extends Field<?>> fields)Joins the existing table product to a new table with aUSINGclause.voidSelectQuery. addJoinUsing(TableLike<?> table, JoinType type, java.util.Collection<? extends Field<?>> fields)Joins the existing table product to a new table with aUSINGclause.SelectJoinStep<R>SelectJoinStep. crossApply(TableLike<?> table)CROSS APPLYa table to this table.Table<Record>Table. crossApply(TableLike<?> table)CROSS APPLYa table to this table.SelectJoinStep<R>SelectJoinStep. crossJoin(TableLike<?> table)Convenience method toCROSS JOINa table to the last table added to theFROMclause usingTable.crossJoin(TableLike)Table<Record>Table. crossJoin(TableLike<?> table)CROSS JOINa table to this table.SelectJoinStep<R>SelectFromStep. from(TableLike<?> table)Add aFROMclause to the query.SelectJoinStep<R>SelectFromStep. from(TableLike<?>... tables)Add aFROMclause to the query.UpdateWhereStep<R>UpdateFromStep. from(TableLike<?> table)Add aFROMclause to the query.UpdateWhereStep<R>UpdateFromStep. from(TableLike<?>... table)Add aFROMclause to the query.SelectOnStep<R>SelectJoinStep. fullJoin(TableLike<?> table)Convenience method toFULL OUTER JOINa table to the last table added to theFROMclause usingTable.fullOuterJoin(TableLike).TableOnStep<Record>Table. fullJoin(TableLike<?> table)FULL OUTER JOINa table to this table.SelectOnStep<R>SelectJoinStep. fullOuterJoin(TableLike<?> table)Convenience method toFULL OUTER JOINa table to the last table added to theFROMclause usingTable.fullOuterJoin(TableLike)TableOnStep<Record>Table. fullOuterJoin(TableLike<?> table)FULL OUTER JOINa table to this table.SelectOnStep<R>SelectJoinStep. innerJoin(TableLike<?> table)Convenience method toINNER JOINa table to the last table added to theFROMclause usingTable.join(TableLike).TableOnStep<Record>Table. innerJoin(TableLike<?> table)INNER JOINa table to this table.SelectOnStep<R>SelectJoinStep. join(TableLike<?> table)Convenience method toINNER JOINa table to the last table added to theFROMclause usingTable.join(TableLike).SelectOptionalOnStep<R>SelectJoinStep. join(TableLike<?> table, JoinType type)Convenience method to join a table to the last table added to theFROMclause usingTable.join(TableLike, JoinType)TableOnStep<Record>Table. join(TableLike<?> table)INNER JOINa table to this table.TableOptionalOnStep<Record>Table. join(TableLike<?> table, JoinType type)Join a table to this table using aJoinTypeTableOnStep<Record>TableOuterJoinStep. join(TableLike<?> table, JoinType type)Join a table to this table using aJoinType.SelectOnStep<R>SelectJoinStep. leftAntiJoin(TableLike<?> table)A syntheticLEFT ANTI JOINclause that translates to an equivalentNOT EXISTSpredicate.TableOnStep<R>Table. leftAntiJoin(TableLike<?> table)A syntheticLEFT ANTI JOINclause that translates to an equivalentNOT EXISTSpredicate.SelectJoinPartitionByStep<R>SelectJoinStep. leftJoin(TableLike<?> table)Convenience method toLEFT OUTER JOINa table to the last table added to theFROMclause usingTable.leftOuterJoin(TableLike).TablePartitionByStep<Record>Table. leftJoin(TableLike<?> table)LEFT OUTER JOINa table to this table.TableOnStep<Record>TableOuterJoinStep. leftJoin(TableLike<?> table)LEFT OUTER JOINa table to this table.SelectJoinPartitionByStep<R>SelectJoinStep. leftOuterJoin(TableLike<?> table)Convenience method toLEFT OUTER JOINa table to the last table added to theFROMclause usingTable.leftOuterJoin(TableLike)TablePartitionByStep<Record>Table. leftOuterJoin(TableLike<?> table)LEFT OUTER JOINa table to this table.TableOnStep<Record>TableOuterJoinStep. leftOuterJoin(TableLike<?> table)LEFT OUTER JOINa table to this table.SelectOnStep<R>SelectJoinStep. leftSemiJoin(TableLike<?> table)A syntheticLEFT SEMI JOINclause that translates to an equivalentEXISTSpredicate.TableOnStep<R>Table. leftSemiJoin(TableLike<?> table)A syntheticLEFT SEMI JOINclause that translates to an equivalentEXISTSpredicate.SelectJoinStep<R>SelectJoinStep. naturalFullOuterJoin(TableLike<?> table)Convenience method toNATURAL FULL OUTER JOINa table to the last table added to theFROMclause usingTable.naturalFullOuterJoin(TableLike)Table<Record>Table. naturalFullOuterJoin(TableLike<?> table)NATURAL FULL OUTER JOINa table to this table.SelectJoinStep<R>SelectJoinStep. naturalJoin(TableLike<?> table)Convenience method toNATURAL JOINa table to the last table added to theFROMclause usingTable.naturalJoin(TableLike)Table<Record>Table. naturalJoin(TableLike<?> table)NATURAL JOINa table to this table.SelectJoinStep<R>SelectJoinStep. naturalLeftOuterJoin(TableLike<?> table)Convenience method toNATURAL LEFT OUTER JOINa table to the last table added to theFROMclause usingTable.naturalLeftOuterJoin(TableLike)Table<Record>Table. naturalLeftOuterJoin(TableLike<?> table)NATURAL LEFT OUTER JOINa table to this table.SelectJoinStep<R>SelectJoinStep. naturalRightOuterJoin(TableLike<?> table)Convenience method toNATURAL RIGHT OUTER JOINa table to the last table added to theFROMclause usingTable.naturalRightOuterJoin(TableLike)Table<Record>Table. naturalRightOuterJoin(TableLike<?> table)NATURAL RIGHT OUTER JOINa table to this table.SelectJoinStep<R>SelectJoinStep. outerApply(TableLike<?> table)OUTER APPLYa table to this table.Table<Record>Table. outerApply(TableLike<?> table)OUTER APPLYa table to this table.SelectJoinPartitionByStep<R>SelectJoinStep. rightJoin(TableLike<?> table)Convenience method toRIGHT OUTER JOINa table to the last table added to theFROMclause usingTable.rightOuterJoin(TableLike).TablePartitionByStep<Record>Table. rightJoin(TableLike<?> table)RIGHT OUTER JOINa table to this table.TableOnStep<Record>TableOuterJoinStep. rightJoin(TableLike<?> table)RIGHT OUTER JOINa table to this table.SelectJoinPartitionByStep<R>SelectJoinStep. rightOuterJoin(TableLike<?> table)Convenience method toRIGHT OUTER JOINa table to the last table added to theFROMclause usingTable.rightOuterJoin(TableLike)TablePartitionByStep<Record>Table. rightOuterJoin(TableLike<?> table)RIGHT OUTER JOINa table to this table.TableOnStep<Record>TableOuterJoinStep. rightOuterJoin(TableLike<?> table)RIGHT OUTER JOINa table to this table.<R extends Record>
SelectQuery<R>DSLContext. selectQuery(TableLike<R> table)Create a newSelectQuerySelectOnStep<R>SelectJoinStep. straightJoin(TableLike<?> table)STRAIGHT_JOINa table to this table.TableOnStep<Record>Table. straightJoin(TableLike<?> table)STRAIGHT_JOINa table to this table.MergeOnStep<R>MergeUsingStep. using(TableLike<?> table)Add theUSINGclause to the SQL standardMERGEstatement.Method parameters in org.jooq with type arguments of type TableLike Modifier and Type Method Description voidSelectQuery. addFrom(java.util.Collection<? extends TableLike<?>> from)Add tables to the table product.voidUpdateQuery. addFrom(java.util.Collection<? extends TableLike<?>> from)Add tables to the table product.SelectJoinStep<R>SelectFromStep. from(java.util.Collection<? extends TableLike<?>> tables)Add aFROMclause to the query.UpdateWhereStep<R>UpdateFromStep. from(java.util.Collection<? extends TableLike<?>> tables)Add aFROMclause to the query. -
Uses of TableLike in org.jooq.impl
Classes in org.jooq.impl that implement TableLike Modifier and Type Class Description classCustomTable<R extends TableRecord<R>>A base class for customTableimplementations in client code.classTableImpl<R extends Record>A common base type for tablesMethods in org.jooq.impl with parameters of type TableLike Modifier and Type Method Description static <R extends Record>
Table<R>DSL. lateral(TableLike<R> table)Create aLATERALjoined table.<R extends Record>
SelectQuery<R>DefaultDSLContext. selectQuery(TableLike<R> table)
-