ES-字段是否存在查询
GET index/type/_search{"query": {"bool": {"must_not": {"exists": {"field": "字段名"}}}}}index 索引名称type类型GET index/type/_search{"query": {"bool": {"must": {"exis..
·
GET index/type/_search
{
"query": {
"bool": {
"must_not": {
"exists": {
"field": "字段名"
}
}
}
}
}
index 索引名称
type 类型
GET index/type/_search
{
"query": {
"bool": {
"must": {
"exists": {
"field": "字段名"
}
}
}
}
}
index 索引名称
type 索引类型更多推荐


所有评论(0)