es实现and与or查询

Posted alanwilliamwalker

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es实现and与or查询相关的知识,希望对你有一定的参考价值。

{
    "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")

以上是关于es实现and与or查询的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 雄辩的 SQL 查询与 OR 和 AND 与 where 子句

ElasticSearch_06_ES数据查询

ElasticSearch_06_ES数据查询

ElasticSearch_06_ES数据查询

ElasticSearch_06_ES数据查询

es7.x—查询篇