到目前为止,这是我的SQL:
select * from table where table.json_info @> '{"search_tags":["hello", "world"]}'
如果行hello
world
和search_tags
,则此方法有效
我想知道是否有办法包含具有E hello
或world
的行,当然还有包含两者的行。
感谢所有提前!
答案 0 :(得分:0)
感谢@utility让我在这里走上正轨。
这就是我的结论:
select * from table where table.json_info @> '{"search_tags":["hello"]}' or table.json_info @> '{"search_tags":[ "world"]}'