查询年龄在20-25之间的,包括20岁,但不包括25岁的
GET /person_index/_search { "query"{ "range":{ "age":{ "from":20, "to":25, "include_lower":true, "include_upper":false } } } }
include_lower 是否包含范围的最小值
include_upper 是否包含范围的最大值
查询年龄在20-25之间的,包括20岁,但不包括25岁的
GET /person_index/_search { "query"{ "range":{ "age":{ "from":20, "to":25, "include_lower":true, "include_upper":false } } } }
include_lower 是否包含范围的最小值
include_upper 是否包含范围的最大值