Elasticsearch学习笔记之—数据范围查询

查询年龄在20-25之间的,包括20岁,但不包括25岁的

GET /person_index/_search
{
  "query"{
    "range":{
      "age":{
        "from":20,
        "to":25,
        "include_lower":true,
        "include_upper":false
      }
    }
  }
}
include_lower  是否包含范围的最小值
include_upper  是否包含范围的最大值
posted @ 2019-12-25 17:16  星星c#  阅读(1115)  评论(0)    收藏  举报