weixin_38795512 2018-07-16 02:46 采纳率: 100%
浏览 3167
已采纳

C# Elasticsearch空值查询 不是NULL

查询出图片标记的2条为空的数据
图片说明

  • 写回答

6条回答 默认 最新

  • keny1985 2018-10-08 09:16
    关注

    可以使用TERM的全字查询
    --造数据
    POST /_bulk
    {"index":{"_index":"testtest","_type":"testtype","_id":"1"}}
    {"doctorNumber":"11341","doctorName":""}
    {"index":{"_index":"testtest","_type":"testtype","_id":"2"}}
    {"doctorNumber":"11342","doctorName":""}
    {"index":{"_index":"testtest","_type":"testtype","_id":"3"}}
    {"doctorNumber":"1","doctorName":"1234"}

    --查询
    GET testtest/testtype/_search
    {
    "query": {
    "term": {
    "doctorName.keyword": {
    "value": ""
    }
    }
    }
    }

    --结果
    {
    "took": 1,
    "timed_out": false,
    "_shards": {
    "total": 5,
    "successful": 5,
    "skipped": 0,
    "failed": 0
    },
    "hits": {
    "total": 2,
    "max_score": 0.2876821,
    "hits": [
    {
    "_index": "testtest",
    "_type": "testtype",
    "_id": "2",
    "_score": 0.2876821,
    "_source": {
    "doctorNumber": "11342",
    "doctorName": ""
    }
    },
    {
    "_index": "testtest",
    "_type": "testtype",
    "_id": "1",
    "_score": 0.2876821,
    "_source": {
    "doctorNumber": "11341",
    "doctorName": ""
    }
    }
    ]
    }
    }

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据