当前位置: 首页 > 工具软件 > ElasticQuery > 使用案例 >

elasticsearch查询某个字段为空值的结果

程皓轩
2023-12-01

传统sql查询返回某个字段为空值的结果写法是select * from 表名 where 字段名 is null

在elasticsearch中查询语句为

GET index/type/_search 
{
  "query": {
    "bool": {
      "must_not": {
        "exists": {
          "field": "字段名"
        }
      }
    }
  }
}


反之,查询字段不为空值的语句为

GET index/type/_search
{
  "query": {
    "bool": {
      "must": {
        "exists": {
          "field": "字段名"
        }
      }
    }
  }
}

 类似资料: