查询年龄在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 是否包含范围的最大值
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。