美文网首页
ES查询ID在某个区间内

ES查询ID在某个区间内

作者: 小家猫 | 来源:发表于2020-06-01 11:06 被阅读0次
    GET /hospital_product_eso/_search
    {
      "query": {
        "bool": {
          "must": { "match_all": {} },
          "filter": {
            "range": {
              "id": {
                "gte": 90000,
                "lte": 30000
              }
            }
          }
        }
      }
    }
    

    相关文章

      网友评论

          本文标题:ES查询ID在某个区间内

          本文链接:https://www.haomeiwen.com/subject/qfujzhtx.html