在Postgres数据库中,我有一列jsonb类型,其中包含一个我无法预测其键的通用对象:
{"some_key":"value", "another_unpredictable_key":"another value}
是否可以在不知道键的情况下在所有字段中搜索特定值?某事喜欢
select * from ... where column_whatever->>'*' = '...'
答案 0 :(得分:2)
您需要将json值转换为多行(键/值对),然后搜索结果:
select *
from some_table t
where exists (select *
from jsonb_each_text(t.jsonb_column) as x(ky,val)
where x.val = 'some value');
jsonb_each_text()
为每个顶级键/值对返回一行。这不处理嵌套键。