码迷,mamicode.com
首页 > 其他好文 > 详细

【ElasticSearch】查绚使用学习

时间:2020-02-12 16:03:46      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:style   bool   osi   from   查询   ===   last   nbsp   pos   

【ElasticSearch】查绚使用学习

 

=============================================================

multi_match 多字段匹配

=============================================================

 

multi_match 多字段匹配

multi_match 查询可以在多个字段上执行相同的 match 查询

{
    "query": {
        "bool": {
            "must": [
                {
                    "multi_match": {
                        "fields": [
                            "id",
                            "position"
                        ],
                        "query": "100000"
                    }
                }
            ],
            "must_not": [
                
            ],
            "should": [
                
            ]
        }
    },
    "from": 0,
    "size": 10,
    "sort": [
        
    ],
    "aggs": {
        
    }
}

 

【ElasticSearch】查绚使用学习

标签:style   bool   osi   from   查询   ===   last   nbsp   pos   

原文地址:https://www.cnblogs.com/yangchongxing/p/12299185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!