Elasticsearch 索引为test_dwd_rz_post_data_new 查询publish_time大于0,按照publish_time排序.只显示publish_time
时间: 2023-05-14 21:05:21 浏览: 91
大于0的数据,该怎么写查询语句?
你可以使用以下的 Elasticsearch 查询语句:
```
GET test_dwd_rz_post_data_new/_search
{
"query": {
"range": {
"publish_time": {
"gt": 0
}
}
},
"sort": [
{
"publish_time": {
"order": "asc"
}
}
],
"_source": ["publish_time"]
}
```
这个查询语句会返回 test_dwd_rz_post_data_new 索引中 publish_time 大于0的数据,并按照 publish_time 排序。最后只会显示 publish_time 字段。
相关问题
Elasticsearch 索引为test_dwd_rz_post_data_new 查询publish大于0的数据
您可以使用以下查询语句来查询 Elasticsearch 索引为 test_dwd_rz_post_data_new 中 publish 大于 0 的数据:
```
GET test_dwd_rz_post_data_new/_search
{
"query": {
"range": {
"publish": {
"gt": 0
}
}
}
}
```
这将返回所有 publish 大于 0 的文档。
阅读全文