我想在Factory中使用这样的函数:
public final <R extends Record> InsertValuesStep<R> insertInto(Table<R> into, Collection<? extends Field<?>> fields, Select<?> select) {
return new org.jooq.impl.InsertSelectQueryImpl<R>(this, into, fields, select);
}
但我无法访问org.jooq.impl.InsertSelectQueryImpl,我想使用InsertOnDuplicateStep来设置onDuplicateKeyUpdate()
如何实施,Lukas?
我想得到像这样的SQL:
insert ignore into tb1(field1,field2) select value1,value2 from tb2