一.单词查询
{
"query": {
"term": {
"orderNo": "436476007342420270"
}
}
}
二.查询存在的数据
{
"query": {
"bool": {
"must": [
{
"exists": {
"field": "sex",
"boost": 1
}
}
],
"disable_coord": false,
"adjust_pure_negative": true,
"boost": 1
}
}
}
三.查询空串
{"_source" : {
"includes" : [
"orderNo",
"idCard"
]
},
"query": {
"term": {
"idCard.keyword": ""
}
}
}
四.范围查询
{
"query":{
"bool" : {
"filter" : [
{
"range" : {
"createTime" : {
"from" : "1543593600000",
"to" : "1543593660000",
"include_lower" : true,
"include_upper" : true,
"boost" : 1.0
}
}
}
],
"must_not" : [
{
"exists" : {
"field" : "sex",
"boost" : 1.0
}
}
],
"disable_coord" : false,
"adjust_pure_negative" : true,
"boost" : 1.0
}
}
}