Elasticsearch使用聚合查询
GET /index/document/_search
{
"query": {
"bool": {
"filter": [
{
"term": {
"userName.keyword": {
"value": "Jack"
}
}
},
{
"range": {
"createTime": {
"from": "2019-01-01 00:00:00",
"to": "2019-01-02 00:00:00"
}
}
}
]
}
},
"aggregations": {
"totalCount": {
"value_count": {
"field": "userName.keyword"
}
},
"totalAmount": {
"sum": {
"field": "orderAmount"
}
}
}
}