【发布时间】:2022-01-07 10:49:12
【问题描述】:
我有想要使用 scala Jooq 参数执行的查询。
select * from
tablewhere ("value1") in unnest(array) and ("value2") in unnest(array);
我可以将此部分转换为以下 jooq 参数,但我无法获得我需要为 where 子句做的事情。
dslContext.select(asterisk()).from(table).where(*)
【问题讨论】:
标签: scala google-bigquery jooq