@NotNull InsertValuesStepN<R> | 
InsertSetStep.columns(Collection<? extends Field<?>> fields) | 
 Set the columns for insert. 
 | 
@NotNull InsertValuesStepN<R> | 
InsertSetStep.columns(Field<?>... fields) | 
 Set the columns for insert. 
 | 
<R extends Record> @NotNull InsertValuesStepN<R> | 
DSLContext.insertInto(Table<R> into,
          Collection<? extends Field<?>> fields) | 
 Create a new DSL insert statement. 
 | 
<R extends Record> @NotNull InsertValuesStepN<R> | 
DSLContext.insertInto(Table<R> into,
          Field<?>... fields) | 
 Create a new DSL insert statement. 
 | 
<R extends Record> @NotNull InsertValuesStepN<R> | 
WithStep.insertInto(Table<R> into,
          Collection<? extends Field<?>> fields) | 
 Create a new DSL insert statement. 
 | 
<R extends Record> @NotNull InsertValuesStepN<R> | 
WithStep.insertInto(Table<R> into,
          Field<?>... fields) | 
 Create a new DSL insert statement. 
 | 
@NotNull InsertValuesStepN<R> | 
InsertSetStep.values(Object... values) | 
 Add values to the insert statement with implicit field names. 
 | 
@NotNull InsertValuesStepN<R> | 
InsertSetStep.values(Collection<?> values) | 
 Add values to the insert statement with implicit field names. 
 | 
@NotNull InsertValuesStepN<R> | 
InsertSetStep.values(Field<?>... values) | 
 Add values to the insert statement with implicit field names. 
 | 
@NotNull InsertValuesStepN<R> | 
InsertValuesStepN.values(Object... values) | 
 Add values to the insert statement 
 | 
@NotNull InsertValuesStepN<R> | 
InsertValuesStepN.values(Collection<?> values) | 
 Add values to the insert statement 
 | 
@NotNull InsertValuesStepN<R> | 
InsertValuesStepN.values(Field<?>... values) | 
 Add values to the insert statement 
 |