赞
踩
"query": { "bool": { "must": [ { "bool": { "should": [ {"match": {"look_user": "test1"}}, {"match": {"userId": "test2"}} ] } }, {"terms": {"status": 1}}, {"match": {"verify": 2}} ] } }
{
"size": 0,
"aggs": {
"name_type": {
"terms": {
"field": "class"
}
}
}
}
{ "size": 0, "aggs": { "name_type": { "terms": { "field": "class" }, "aggs": { "_B_": { "terms": { "field": "tag" } } } } } }
body = { "query": { # 按时间范围查找 "range": { "save_time": { "gte": "2022-06-01", "lt": "2022-06-04" } } }, "size": 0, "aggs": { "groupDate": { "date_histogram": { "field": "save_time", "interval": "day", # 按时间分天统计,year, quarter, month, week, day, hour, minute, second(年份、季度、月、周、日、小时、分钟、秒) "format": "yyyy-MM-dd" } } } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。