我有一个表来存储我的兔子的信息。它是这样的:

create table rabbits (rabbit_id bigserial primary key, info json not null);
insert into rabbits (info) values
  ('{"name":"Henry", "food":["lettuce","carrots"]}'),
  ('{"name":"Herald","food":["carrots","zucchini"]}'),
  ('{"name":"Helen", "food":["lettuce","cheese"]}');

我该如何找到喜欢吃胡萝卜的兔子呢?我想到了这个:

select info->>'name' from rabbits where exists (
  select 1 from json_array_elements(info->'food') as food
  where food::text = '"carrots"'
);

我不喜欢这个问题。真是一团糟。

作为一个全职的养兔人,我没有时间更改我的数据库模式。我只是想好好喂养我的兔子。是否有更可读的方式来执行该查询?


当前回答

你可以做一个直接类型转换,从jsonb到文本,如果你想检查完整的json而不是一个键。

select * from table_name
where 
column_name::text ilike '%Something%';

其他回答

不是更聪明,而是更简单:

select info->>'name' from rabbits WHERE info->>'food' LIKE '%"carrots"%';

这可能会有所帮助。

SELECT a.crops ->> 'contentFile' as contentFile
FROM ( SELECT json_array_elements('[
    {
        "cropId": 23,
        "contentFile": "/menu/wheat"
    },
    {
        "cropId": 25,
        "contentFile": "/menu/rice"
    }
]') as crops ) a
WHERE a.crops ->> 'cropId' = '23';

输出:

/menu/wheat

你可以做一个直接类型转换,从jsonb到文本,如果你想检查完整的json而不是一个键。

select * from table_name
where 
column_name::text ilike '%Something%';

不是更简单,而是更聪明:

select json_path_query(info, '$ ? (@.food[*] == "carrots")') from rabbits

为了在JSONB中选择特定的键,应该使用->。

select * from rabbits where (info->'food')::jsonb ? 'carrots';