需要了解elasticSearch基础入门可以查看https://blog.csdn.net/u014232211/article/details/120026239
下面的例子基于这份数据来查询
a.子条件查询 特定字段查询所指特定值
{ "query":{ "match":{ "author": "problem1" } } }
{ "query":{ "match_phrase":{ "title": "NBA333" } } }
{ "query":{ "multi_match":{ "query": "NBA333", "fields": ["author","title"] } } }
{ "query":{ "query_string":{ "query": "problem1 AND problem2", "fields": ["author"] } } }
字段级别查询: 针对结构化数据,如数字、日期等
{ "query":{ "term":{ "word_count": "2000" } } }
{ "query":{ "range":{ "word_count": { "gte": 1000, "lte": 2000000 } } } }
(日期类型)
{ "query":{ "range":{ "publish_date": { "gte": "2021-01-01", "lte": "2021-02-02" } } } }
{ "query":{ "bool":{ "filter":{ "term":{ "word_count": 2000 } } } } }
b.复合条件查询 以一定的逻辑组合子条件查询
{ "query":{ "constant_score":{ "filter":{ "match":{ "author":"problem1" } }, "boost":10 } } }
{ "query":{ "bool":{ "should":[ { "match":{ "author": "problem1" } }, { "match":{ "title": "男孩" } } ] } } }
{ "query":{ "bool":{ "must_not":[ { "match":{ "author": "problem1" } }, { "match":{ "title": "男孩" } } ], "filter":{ "term":{ "word_count": 5000 } } } } }