課程
/云計算&大數據
/大數據
/ElasticSearch入門
多個精確查詢用什么?multi_match這個是多個模糊查詢
2018-01-29
源自:ElasticSearch入門 6-6
正在回答
{
"query":{
"bool":{
"filter":[
"match_phrase":{
"age":41
}
},
"id": "drug_user370283197604176814"
]
舉報
ElasticSearch輕松入門,Spring Boot集成ES
1 回答author字段不能模糊查詢而title可以模糊查詢?
3 回答模糊查詢無效
2 回答關于語法查詢中-范圍查詢問題(如何查詢多個字段的范圍)
1 回答老師, 您好, 一個索引下可以有多個類型吧,這時 條件查詢和聚合查詢怎么寫?
1 回答為什么我查詢的時候帶數字就不能模糊匹配到
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2018-02-07
{
"query":{
"bool":{
"filter":[
{
"match_phrase":{
"age":41
}
},
{
"match_phrase":{
"id": "drug_user370283197604176814"
}
}
]
}
}
}