我想在工厂中实现这样的功能:
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()
卢卡斯,如何实现它?
我想得到这样的sql:
insert ignore into tb1(field1,field2) select value1,value2 from tb2