gpt4 book ai didi

hibernate - 根据存储在列中的 JSON 执行查询

转载 作者:行者123 更新时间:2023-11-29 13:26:18 24 4
gpt4 key购买 nike

我正在使用 PostgresSQL 数据库,我在一个表中有四列,其中一列存储一个 JSON,例如:

{"a":"1","b":"2","c":"3"}

我想执行查询,返回该列中 c = 3 的所有行。如何使用 Hibernate 实现此目的?

最佳答案

使用->> operator :

-- Example data
create table test (id int, js jsonb);
insert into test values
(1, '{"a":"1","b":"2","c":"3"}'),
(2, '{"a":"1","b":"2","c":"4"}');

--query
select *
from test
where js->>'c' = '3';

id | js
----+--------------------------------
1 | {"a": "1", "b": "2", "c": "3"}
(1 row)

关于hibernate - 根据存储在列中的 JSON 执行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33236905/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com