在Postgres数据库中,我有一个jsonb类型的列,其中包含一个我无法预测的键的泛型对象:
{"some_key":"value", "another_unpredictable_key":"another value}
是否可以在不知道密钥的情况下在所有字段中搜索特定值? STH。喜欢
select * from ... where column_whatever->>'*' = '...'
您需要将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()
为每个顶级键/值对返回一行。这不处理嵌套键。