jooq幂等分批插入

qni6mghb  于 2021-07-03  发布在  Java
关注(0)|答案(1)|浏览(377)

我正在尝试实现一个幂等插入,这个查询看起来很适合这个任务

insert into test_table
select *
from (
         values (1, 2, 3, 4),
                (3, 4, 5, 6),
                (1, 2, 3, 4),
                (3, 4, 5, 6)
     ) as data(a, b, c, d)
where not exists(select 1
                 from test_table
                 where test_table.a = data.a
                   and test_table.b = data.b
                   and test_table.c = data.c);

请帮助将此查询翻译成jooqdsl
我使用了greenplum数据库,但不受支持 ON CONFLICT 语法

rjjhvcjd

rjjhvcjd1#

ctx.insertInto(TEST_TABLE)
   .select(
       select()
       .from(values(
           row(1, 2, 3, 4),
           row(3, 4, 5, 6),
           row(1, 2, 3, 4),
           row(3, 4, 5, 6)
       ).as("data", "a", "b", "c", "d"))
       .whereNotExists(
           selectOne()
           .from(TEST_TABLE)
           .where(TEST_TABLE.A.eq(field(name("data", "a"), TEST_TABLE.A.getDataType())))
           .and(TEST_TABLE.B.eq(field(name("data", "b"), TEST_TABLE.A.getDataType())))
           .and(TEST_TABLE.C.eq(field(name("data", "c"), TEST_TABLE.A.getDataType())))
       )
   )
   .execute();

这个答案是假设您正在使用 TEST_DATA (否则,手动构造标识符,如上所示 name("data", "a") ,或如图所示)。此外,它还假设:

import static org.jooq.impl.DSL.*;

正式支持greenplum时,请参见#4700,然后 ON CONFLICT 或者 ON DUPLICATE KEY IGNORE 可以为你效法。

相关问题