Module org.jooq
Package org.jooq

Interface UpdateSetFirstStep<R extends Record>

All Superinterfaces:
UpdateSetStep<R>

public interface UpdateSetFirstStep<R extends Record> extends UpdateSetStep<R>
This type is used for the Update's DSL API.

Example:

 using(configuration)
       .update(table)
       .set(field1, value1)
       .set(field2, value2)
       .where(field1.greaterThan(100))
       .execute();
 
Author:
Lukas Eder
  • Method Summary

    Modifier and Type
    Method
    Description
    <T1> @NotNull UpdateFromStep<R>
    set​(Row1<T1> row, Row1<T1> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1> @NotNull UpdateFromStep<R>
    set​(Row1<T1> row, Select<? extends Record1<T1>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10>
    @NotNull UpdateFromStep<R>
    set​(Row10<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10> row, Row10<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10>
    @NotNull UpdateFromStep<R>
    set​(Row10<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10> row, Select<? extends Record10<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11>
    @NotNull UpdateFromStep<R>
    set​(Row11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11> row, Row11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11>
    @NotNull UpdateFromStep<R>
    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 the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12>
    @NotNull UpdateFromStep<R>
    set​(Row12<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12> row, Row12<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12>
    @NotNull UpdateFromStep<R>
    set​(Row12<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12> row, Select<? extends Record12<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13>
    @NotNull UpdateFromStep<R>
    set​(Row13<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13> row, Row13<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13>
    @NotNull UpdateFromStep<R>
    set​(Row13<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13> row, Select<? extends Record13<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14>
    @NotNull UpdateFromStep<R>
    set​(Row14<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14> row, Row14<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14>
    @NotNull UpdateFromStep<R>
    set​(Row14<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14> row, Select<? extends Record14<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15>
    @NotNull UpdateFromStep<R>
    set​(Row15<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15> row, Row15<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15>
    @NotNull UpdateFromStep<R>
    set​(Row15<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15> row, Select<? extends Record15<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16>
    @NotNull UpdateFromStep<R>
    set​(Row16<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16> row, Row16<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16>
    @NotNull UpdateFromStep<R>
    set​(Row16<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16> row, Select<? extends Record16<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17>
    @NotNull UpdateFromStep<R>
    set​(Row17<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17> row, Row17<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17>
    @NotNull UpdateFromStep<R>
    set​(Row17<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17> row, Select<? extends Record17<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18>
    @NotNull UpdateFromStep<R>
    set​(Row18<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18> row, Row18<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18>
    @NotNull UpdateFromStep<R>
    set​(Row18<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18> row, Select<? extends Record18<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19>
    @NotNull UpdateFromStep<R>
    set​(Row19<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19> row, Row19<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19>
    @NotNull UpdateFromStep<R>
    set​(Row19<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19> row, Select<? extends Record19<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2> @NotNull UpdateFromStep<R>
    set​(Row2<T1,​T2> row, Row2<T1,​T2> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2> @NotNull UpdateFromStep<R>
    set​(Row2<T1,​T2> row, Select<? extends Record2<T1,​T2>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20>
    @NotNull UpdateFromStep<R>
    set​(Row20<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20> row, Row20<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20>
    @NotNull UpdateFromStep<R>
    set​(Row20<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20> row, Select<? extends Record20<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20,​ T21>
    @NotNull UpdateFromStep<R>
    set​(Row21<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21> row, Row21<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20,​ T21>
    @NotNull UpdateFromStep<R>
    set​(Row21<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21> row, Select<? extends Record21<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20,​ T21,​ T22>
    @NotNull UpdateFromStep<R>
    set​(Row22<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22> row, Row22<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20,​ T21,​ T22>
    @NotNull UpdateFromStep<R>
    set​(Row22<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22> row, Select<? extends Record22<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3> @NotNull UpdateFromStep<R>
    set​(Row3<T1,​T2,​T3> row, Row3<T1,​T2,​T3> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3> @NotNull UpdateFromStep<R>
    set​(Row3<T1,​T2,​T3> row, Select<? extends Record3<T1,​T2,​T3>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4>
    @NotNull UpdateFromStep<R>
    set​(Row4<T1,​T2,​T3,​T4> row, Row4<T1,​T2,​T3,​T4> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4>
    @NotNull UpdateFromStep<R>
    set​(Row4<T1,​T2,​T3,​T4> row, Select<? extends Record4<T1,​T2,​T3,​T4>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5>
    @NotNull UpdateFromStep<R>
    set​(Row5<T1,​T2,​T3,​T4,​T5> row, Row5<T1,​T2,​T3,​T4,​T5> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5>
    @NotNull UpdateFromStep<R>
    set​(Row5<T1,​T2,​T3,​T4,​T5> row, Select<? extends Record5<T1,​T2,​T3,​T4,​T5>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6>
    @NotNull UpdateFromStep<R>
    set​(Row6<T1,​T2,​T3,​T4,​T5,​T6> row, Row6<T1,​T2,​T3,​T4,​T5,​T6> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6>
    @NotNull UpdateFromStep<R>
    set​(Row6<T1,​T2,​T3,​T4,​T5,​T6> row, Select<? extends Record6<T1,​T2,​T3,​T4,​T5,​T6>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7>
    @NotNull UpdateFromStep<R>
    set​(Row7<T1,​T2,​T3,​T4,​T5,​T6,​T7> row, Row7<T1,​T2,​T3,​T4,​T5,​T6,​T7> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7>
    @NotNull UpdateFromStep<R>
    set​(Row7<T1,​T2,​T3,​T4,​T5,​T6,​T7> row, Select<? extends Record7<T1,​T2,​T3,​T4,​T5,​T6,​T7>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8>
    @NotNull UpdateFromStep<R>
    set​(Row8<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8> row, Row8<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8>
    @NotNull UpdateFromStep<R>
    set​(Row8<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8> row, Select<? extends Record8<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8>> select)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9>
    @NotNull UpdateFromStep<R>
    set​(Row9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9> row, Row9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9>
    @NotNull UpdateFromStep<R>
    set​(Row9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9> row, Select<? extends Record9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9>> select)
    Specify a multi-column set clause for the UPDATE statement.
    @NotNull UpdateFromStep<R>
    set​(RowN row, RowN value)
    Specify a multi-column set clause for the UPDATE statement.
    @NotNull UpdateFromStep<R>
    set​(RowN row, Select<? extends Record> select)
    Specify a multi-column set clause for the UPDATE statement.

    Methods inherited from interface org.jooq.UpdateSetStep

    set, set, set, set, set, setNull
  • Method Details

    • set

      @NotNull @CheckReturnValue @Support @NotNull UpdateFromStep<R> set(RowN row, RowN value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1> @NotNull UpdateFromStep<R> set(Row1<T1> row, Row1<T1> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2> @NotNull UpdateFromStep<R> set(Row2<T1,​T2> row, Row2<T1,​T2> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3> @NotNull UpdateFromStep<R> set(Row3<T1,​T2,​T3> row, Row3<T1,​T2,​T3> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4> @NotNull UpdateFromStep<R> set(Row4<T1,​T2,​T3,​T4> row, Row4<T1,​T2,​T3,​T4> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5> @NotNull UpdateFromStep<R> set(Row5<T1,​T2,​T3,​T4,​T5> row, Row5<T1,​T2,​T3,​T4,​T5> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6> @NotNull UpdateFromStep<R> set(Row6<T1,​T2,​T3,​T4,​T5,​T6> row, Row6<T1,​T2,​T3,​T4,​T5,​T6> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7> @NotNull UpdateFromStep<R> set(Row7<T1,​T2,​T3,​T4,​T5,​T6,​T7> row, Row7<T1,​T2,​T3,​T4,​T5,​T6,​T7> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8> @NotNull UpdateFromStep<R> set(Row8<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8> row, Row8<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9> @NotNull UpdateFromStep<R> set(Row9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9> row, Row9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10> @NotNull UpdateFromStep<R> set(Row10<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10> row, Row10<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11> @NotNull UpdateFromStep<R> set(Row11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11> row, Row11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12> @NotNull UpdateFromStep<R> set(Row12<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12> row, Row12<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13> @NotNull UpdateFromStep<R> set(Row13<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13> row, Row13<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14> @NotNull UpdateFromStep<R> set(Row14<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14> row, Row14<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15> @NotNull UpdateFromStep<R> set(Row15<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15> row, Row15<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16> @NotNull UpdateFromStep<R> set(Row16<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16> row, Row16<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17> @NotNull UpdateFromStep<R> set(Row17<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17> row, Row17<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18> @NotNull UpdateFromStep<R> set(Row18<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18> row, Row18<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19> @NotNull UpdateFromStep<R> set(Row19<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19> row, Row19<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20> @NotNull UpdateFromStep<R> set(Row20<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20> row, Row20<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20,​ T21> @NotNull UpdateFromStep<R> set(Row21<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21> row, Row21<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      @NotNull @CheckReturnValue @Support <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20,​ T21,​ T22> @NotNull UpdateFromStep<R> set(Row22<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22> row, Row22<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22> value)
      Specify a multi-column set clause for the UPDATE statement.

      This is emulated using a subquery for the value, where row value expressions on the right hand side aren't supported, or with an ordinary SET clause, where row value expressions on the left hand side aren't supported.

    • set

      Specify a multi-column set clause for the UPDATE statement.
    • set

      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2> @NotNull UpdateFromStep<R> set(Row2<T1,​T2> row, Select<? extends Record2<T1,​T2>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3> @NotNull UpdateFromStep<R> set(Row3<T1,​T2,​T3> row, Select<? extends Record3<T1,​T2,​T3>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4> @NotNull UpdateFromStep<R> set(Row4<T1,​T2,​T3,​T4> row, Select<? extends Record4<T1,​T2,​T3,​T4>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5> @NotNull UpdateFromStep<R> set(Row5<T1,​T2,​T3,​T4,​T5> row, Select<? extends Record5<T1,​T2,​T3,​T4,​T5>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6> @NotNull UpdateFromStep<R> set(Row6<T1,​T2,​T3,​T4,​T5,​T6> row, Select<? extends Record6<T1,​T2,​T3,​T4,​T5,​T6>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7> @NotNull UpdateFromStep<R> set(Row7<T1,​T2,​T3,​T4,​T5,​T6,​T7> row, Select<? extends Record7<T1,​T2,​T3,​T4,​T5,​T6,​T7>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8> @NotNull UpdateFromStep<R> set(Row8<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8> row, Select<? extends Record8<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9> @NotNull UpdateFromStep<R> set(Row9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9> row, Select<? extends Record9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10> @NotNull UpdateFromStep<R> set(Row10<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10> row, Select<? extends Record10<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11> @NotNull UpdateFromStep<R> 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 the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12> @NotNull UpdateFromStep<R> set(Row12<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12> row, Select<? extends Record12<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13> @NotNull UpdateFromStep<R> set(Row13<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13> row, Select<? extends Record13<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14> @NotNull UpdateFromStep<R> set(Row14<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14> row, Select<? extends Record14<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15> @NotNull UpdateFromStep<R> set(Row15<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15> row, Select<? extends Record15<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16> @NotNull UpdateFromStep<R> set(Row16<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16> row, Select<? extends Record16<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17> @NotNull UpdateFromStep<R> set(Row17<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17> row, Select<? extends Record17<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18> @NotNull UpdateFromStep<R> set(Row18<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18> row, Select<? extends Record18<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19> @NotNull UpdateFromStep<R> set(Row19<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19> row, Select<? extends Record19<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20> @NotNull UpdateFromStep<R> set(Row20<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20> row, Select<? extends Record20<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20,​ T21> @NotNull UpdateFromStep<R> set(Row21<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21> row, Select<? extends Record21<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21>> select)
      Specify a multi-column set clause for the UPDATE statement.
    • set

      @NotNull @CheckReturnValue @Support({ASE,AURORA_POSTGRES,BIGQUERY,COCKROACHDB,DB2,H2,HANA,HSQLDB,INGRES,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER,SYBASE}) <T1,​ T2,​ T3,​ T4,​ T5,​ T6,​ T7,​ T8,​ T9,​ T10,​ T11,​ T12,​ T13,​ T14,​ T15,​ T16,​ T17,​ T18,​ T19,​ T20,​ T21,​ T22> @NotNull UpdateFromStep<R> set(Row22<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22> row, Select<? extends Record22<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22>> select)
      Specify a multi-column set clause for the UPDATE statement.