Docs/ELK/match与match_phrase.md
2022-10-18 16:59:37 +08:00

301 B

## 搜索索引bank中的addree字段包含mill或lane的数据
GET /bank/_search
{
  "query": { "match": { "address": "mill lane" } }
}
## 搜索索引bank中的addree字段包含“mill lane”的数据
GET /bank/_search
{
  "query": { "match_phrase": { "address": "mill lane" } }
}