Uses of Interface
org.jooq.Record11
-
Packages that use Record11 Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of Record11 in org.jooq
Methods in org.jooq with type parameters of type Record11 Modifier and Type Method Description <R extends Record11<?,?,?,?,?,?,?,?,?,?,?>>
CommonTableExpression<R>DerivedColumnList11. as(Select<R> select)
Specify a subselect to refer to by theDerivedColumnList
to form a common table expression.Methods in org.jooq that return Record11 Modifier and Type Method Description <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DSLContext. fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>Record. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Copy this record into a new record holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DSLContext. newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Create a new emptyRecord
.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value1(T1 value)
Set the first value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value10(T10 value)
Set the tenth value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value11(T11 value)
Set the eleventh value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value2(T2 value)
Set the second value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value3(T3 value)
Set the third value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value4(T4 value)
Set the fourth value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value5(T5 value)
Set the fifth value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value6(T6 value)
Set the sixth value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value7(T7 value)
Set the seventh value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value8(T8 value)
Set the eighth value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. value9(T9 value)
Set the ninth value.Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11. values(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11)
Set all values.Methods in org.jooq that return types with arguments of type Record11 Modifier and Type Method Description <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
ResultQuery<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>ResultQuery. coerce(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Coerce the result record type of this query to that of a set of fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Result<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>Result. into(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Copy all records from this result into a new result with new records holding only a subset of the previous fields.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Result<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
DeleteResultStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DeleteReturningStep. returningResult(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Configure theDELETE
statement to return a list of fields inR
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
InsertResultStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>InsertReturningStep. returningResult(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Configure theINSERT
statement to return a list of fields inR
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
UpdateResultStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>UpdateReturningStep. returningResult(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Configure theUPDATE
statement to return a list of fields inR
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSLContext. select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>WithStep. select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSLContext. selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>WithStep. selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Create a new DSL select statement.Methods in org.jooq with parameters of type Record11 Modifier and Type Method Description Condition
BetweenAndStep11. and(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Create a condition to check this field against some boundsBetweenAndStep11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Row11. between(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue)
Check if this row value expression is within a range of two records.Condition
Row11. between(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue, Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a range of two records.BetweenAndStep11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Row11. betweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue)
Check if this row value expression is within a symmetric range of two records.Condition
Row11. betweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue, Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a symmetric range of two records.Condition
Row11. compare(Comparator comparator, Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record using a dynamic comparator.Condition
Row11. eq(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for equality.Condition
Row11. equal(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for equality.Condition
Row11. ge(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.Condition
Row11. greaterOrEqual(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.Condition
Row11. greaterThan(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.Condition
Row11. gt(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.Condition
Row11. in(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>... record)
Compare this row value expression with a set of records for equality.Condition
Row11. isDistinctFrom(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with another row value expression for distinctness.Condition
Row11. isNotDistinctFrom(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with another row value expression for distinctness.Condition
Row11. le(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.Condition
Row11. lessOrEqual(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.Condition
Row11. lessThan(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.Condition
Row11. lt(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.Condition
Row11. ne(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for non-equality.BetweenAndStep11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Row11. notBetween(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue)
Check if this row value expression is within a range of two records.Condition
Row11. notBetween(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue, Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a range of two records.BetweenAndStep11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Row11. notBetweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue)
Check if this row value expression is not within a symmetric range of two records.Condition
Row11. notBetweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue, Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is not within a symmetric range of two records.Condition
Row11. notEqual(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for non-equalityCondition
Row11. notIn(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>... record)
Compare this row value expression with a set of records for non-equality.Method parameters in org.jooq with type arguments of type Record11 Modifier and Type Method Description <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
voidUpdateQuery. addValues(Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> row, Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Specify a multi-column set clause for theUPDATE
statement.WithStep
WithAsStep11. as(Select<? extends Record11<?,?,?,?,?,?,?,?,?,?,?>> select)
Associate a subselect with a common table expression's table and column names.Condition
Row11. compare(Comparator comparator, QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect using a dynamic comparator.Condition
Row11. compare(Comparator comparator, Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect using a dynamic comparator.Condition
Row11. eq(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for equality.Condition
Row11. eq(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for equality.Condition
Row11. equal(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for equality.Condition
Row11. equal(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for equality.Condition
Row11. ge(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. ge(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. greaterOrEqual(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. greaterOrEqual(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. greaterThan(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. greaterThan(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. gt(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. gt(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. in(Result<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> result)
Compare this row value expression with a set of records for equality.Condition
Row11. in(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for equality.Condition
Row11. le(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. le(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. lessOrEqual(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. lessOrEqual(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. lessThan(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. lessThan(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. lt(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. lt(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.Condition
Row11. ne(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for non-equality.Condition
Row11. ne(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for non-equality.Condition
Row11. notEqual(QuantifiedSelect<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for non-equality.Condition
Row11. notEqual(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for non-equality.Condition
Row11. notIn(Result<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> result)
Compare this row value expression with a set of records for equality.Condition
Row11. notIn(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for non-equality.InsertOnDuplicateStep<R>
InsertValuesStep11. select(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Use aSELECT
statement as the source of values for theINSERT
statementMerge<R>
MergeValuesStep11. select(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Use aSELECT
statement as the source of values for theMERGE
statement<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
UpdateFromStep<R>UpdateSetFirstStep. set(Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> row, Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Specify a multi-column set clause for theUPDATE
statement. -
Uses of Record11 in org.jooq.impl
Methods in org.jooq.impl that return Record11 Modifier and Type Method Description <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DefaultDSLContext. fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>DefaultDSLContext. newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Methods in org.jooq.impl that return types with arguments of type Record11 Modifier and Type Method Description <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Result<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DefaultDSLContext. newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
RecordType<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSL. recordType(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Create aRecordType
of degree11
.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Field<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSL. rowField(Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> row)
EXPERIMENTAL: Turn a row value expression of degree11
into aField
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DefaultDSLContext. select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSL. select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Create a new DSL subselect statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DefaultDSLContext. selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSL. selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Create a new DSL subselect statement.static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Table<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>DSL. values(Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>... rows)
Create aVALUES()
expression of degree11
.
-