我有一张桌子来存储有关我的兔子的信息。看起来像这样:
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"'
);
我不喜欢那个查询。一团糟。
作为专职兔子管理员,我没有时间更改数据库架构。我只想适当地喂兔子。有没有更可读的方法来执行该查询?
1
有趣的问题。我玩过它,但是后来它突然出现在我身上,我不确定你所说的“更好”是什么意思。您根据什么标准判断答案?可读性?效率?其他?
—
David S
@DavidS :(我更新了问题。)我宁愿可读性胜于效率。我当然不希望有比全表扫描更好的功能,因为我将模式保持不变。
—
雪球2013年
我因为兔子而投票支持这个问题是错误的吗?
—
奥斯曼
我只是因为兔子就提出了这个问题,然后看到了您的评论@osman
—
1valdis
我看到了您的评论,然后意识到我需要因为兔子而投票
—
Peter Aron Zentai