es实现and与or查询
时间:2019-10-16 13:11:34
收藏:0
阅读:1621
{ "query": { "bool": { "must": [{ "match_phrase": { "name": "a" } }], "should": [{ "match_phrase": { "city": "b" } }, { "match_phrase": { "city": "c" } }], "minimum_should_match": 1 } }, "size": 5 }
实现 "name"=="a" and ("city" == "b" or "city" == "c")
原文:https://www.cnblogs.com/AlanWilliamWalker/p/11684550.html
评论(0)