我需要一个WHERE
子句来检查元组IN
的列表:(field1, field2) in (('1', 1), ('2', 2), ('3', 3))
。这在Postgres中是有效的SQL。
方言:POSTGRES
jOOQ版本:3.9.6
在这种情况下正确的jOOQ语法是什么?
jOOQ 3.9文档暗示这是可能的,但是他们的示例仅给出了等级1:https://www.jooq.org/doc/3.9/manual/sql-building/conditional-expressions/in-predicate-degree-n/
此代码提供了近似的信息,但是我无法获得referenceOrderIdLineNumbers
的正确类型/数据,也无法获得jOOQ生成的正确SQL。
Collection<Row2<String, Integer>> referenceOrderIdLineNumbers = ...
List<Object[]> rows = dsl.select(... , field("count(TABLE3)", Integer.class )
.from(Tables.TABLE1)
.join(Tables.TABLE2).on(Tables.TABLE2.PK1.eq(Tables.TABLE1.PK1))
.join(Tables.TABLE3).on(Tables.TABLE3.PK2.eq(Tables.TABLE2.PK2))
.where(
row(Tables.TABLE1.FIELD1, Tables.TABLE2.FIELD2) // <-- what to
.in(referenceOrderIdLineNumbers) // <-- do here??
)
.groupBy(...)
.fetch();
答案 0 :(得分:0)
这正按我的预期进行。您可以尝试让jOOQ记录为您生成的SQL,然后尝试直接对您的数据库运行所说的SQL。
参考文献:
Collection<Row2<String, Integer>> field1Field2Collection = new LinkedList<>();
field1Field2Collection.add(row("1", 1));
field1Field2Collection.add(row("2", 2));
field1Field2Collection.add(row("3", 3));
Result<Record2<String, Integer>> field1Field2Results = dsl
.select(Tables.TABLE1.FIELD1, Tables.TABLE2.FIELD2)
.from(Tables.TABLE1)
.join(Tables.TABLE2).on(Tables.TABLE2.PK1.eq(Tables.TABLE1.PK1))
.where(row(Tables.TABLE1.FIELD1, Tables.TABLE2.FIELD2).in(field1Field2Collection))
.fetch();