Postgres:如何在不知道密钥的情况下在json类型列中的对象中搜索_all_字段上的值

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

在Postgres数据库中,我有一个jsonb类型的列,其中包含一个我无法预测的键的泛型对象:

{"some_key":"value", "another_unpredictable_key":"another value}

是否可以在不知道密钥的情况下在所有字段中搜索特定值? STH。喜欢

select * from ... where column_whatever->>'*' = '...'
sql json postgresql
1个回答
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()为每个顶级键/值对返回一行。这不处理嵌套键。

© www.soinside.com 2019 - 2024. All rights reserved.