其他分享
首页 > 其他分享> > es查询相关

es查询相关

作者:互联网

 

 

1.in查询

curl -H "Content-Type: application/json" -XPOST 'http://192.168.1.135:19200/metric_pl/_count?pretty' -d '
{
    "query" : {
        "constant_score" : {
            "filter" : {
                "terms" : { 
                    "month" : ["2022-03-30", "2022-03-31"]
                }
            }
        }
    }
}'

 

标签:03,XPOST,constant,19200,查询,2022,相关,es
来源: https://www.cnblogs.com/hxlasky/p/16080239.html