JOOQ 使用 concat 运算符更新 JSONB 列

问题描述 投票:0回答:1

我有一个表,其列数据类型之一为 JSONB,我尝试使用 postgresql 中的

JSONB concat (||)
运算符来更新 jsonb 列的内容。下面是示例纯 sql 查询(插入/更新示例),我想将其转换为 jooq。

create table foobar(id text primary key, address jsonb not null);

insert into foobar(id, address)
values ('1234', '["a", "b"]'::jsonb);


-- insert / update example
insert into foobar(id, address)
values ('1234', '["a", "b"]'::jsonb)
on conflict (id) DO UPDATE
set address = foobar.address || '["C"]'::jsonb
where foobar.id = '1234';

-- explicit update example
update foobar
set address = address || '["D"]'::jsonb
where id = '1234';

select * from foobar; 

Result for above query:

1234,"["a", "b", "C", "D"]"

我确实看到这个问题支持

concatenation
仍然开放,但想检查是否有任何解决办法我可以使用。

jooq jooq-codegen
1个回答
1
投票

如果您缺少对某些供应商特定功能的支持,jOOQ 中始终有普通 SQL 模板解决方法:

Field<JSONB> jsonbConcat(Field<JSONB> f1, Field<JSONB> f2) {
    DSL.field("({0} || {1})", f1.getDataType(), f1, f2);
}
© www.soinside.com 2019 - 2024. All rights reserved.