elasticsearch match 多条件查询
时间: 2023-05-18 18:05:26 浏览: 562
elasticSearch查询语句DSL
Elasticsearch的match查询可以用于多条件查询,可以通过使用bool查询来实现。bool查询可以将多个查询条件组合在一起,包括must、should、must_not和filter。
例如,我们想要查询title字段包含“elasticsearch”和content字段包含“java”的文档,可以使用以下查询:
```
{
"query": {
"bool": {
"must": [
{ "match": { "title": "elasticsearch" } },
{ "match": { "content": "java" } }
]
}
}
}
```
这个查询使用了bool查询,将两个match查询条件组合在一起,使用must关键字表示这两个条件都必须满足。如果我们想要查询title字段包含“elasticsearch”或content字段包含“java”的文档,可以使用should关键字:
```
{
"query": {
"bool": {
"should": [
{ "match": { "title": "elasticsearch" } },
{ "match": { "content": "java" } }
]
}
}
}
```
这个查询使用了should关键字,表示只要满足其中一个条件即可。如果我们想要查询title字段包含“elasticsearch”但是content字段不包含“java”的文档,可以使用must和must_not关键字:
```
{
"query": {
"bool": {
"must": [
{ "match": { "title": "elasticsearch" } }
],
"must_not": [
{ "match": { "content": "java" } }
]
}
}
}
```
这个查询使用了must和must_not关键字,表示title字段必须包含“elasticsearch”,但是content字段不能包含“java”。如果我们想要查询title字段包含“elasticsearch”并且content字段包含“java”,但是只返回score大于等于0.5的文档,可以使用filter关键字:
```
{
"query": {
"bool": {
"must": [
{ "match": { "title": "elasticsearch" } },
{ "match": { "content": "java" } }
],
"filter": {
"range": {
"_score": {
"gte": 0.5
}
}
}
}
}
}
```
这个查询使用了filter关键字,表示只返回score大于等于0.5的文档。注意,filter查询不会影响score的计算,因此可以提高查询效率。
阅读全文