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

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条)

报告相同问题?

悬赏问题

  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧
  • ¥15 #MATLAB仿真#车辆换道路径规划