es 嵌套查询
需求:查詢2019年信用等級為AAA的企業
查看mapping,是否為數組類型
如果不是,刪除mapping重建
put company_data_index/doc/_mapping?pretty
{
? ? ? ? "doc":{
? ? ? ? ? ? "properties":{
? ? ? ? ? ? ? "all_year_credit_info" : {
? ? ? ? ? ? ? ? ?? ??? ??? ? ? ?"type":"nested",
?? ??? ??? ??? ?"include_in_parent":true,
? ? ? ? ? ? "properties" : {
? ? ? ? ? ? ? "level" : {
? ? ? ? ? ? ? ? "type" : "long"
? ? ? ? ? ? ? },
? ? ? ? ? ? ? "year" : {
? ? ? ? ? ? ? ? "type" : "long"
? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? }}}
? ? }
查詢語句
GET /company_data_index/_search
{
? ? "query": {
? ? ? ? "nested": {
? ? ? ? ? ? "path": "all_year_credit_info", #path為路徑
? ? ? ? ? ? "query": {
? ? ? ? ? ? ? ? "bool": {
? ? ? ? ? ? ? ? ? ? "must": [
? ? ? ? ? ? ? ? ? ? ? ? { "term": { "all_year_credit_info.year": 1577808000 }},
? ? ? ? ? ? ? ? ? ? ? ? { "term": { "all_year_credit_info.level": 1 }}
? ? ? ? ? ? ? ? ? ? ]
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? }
}
總結
- 上一篇: 系统开机时间优化
- 下一篇: 在线XML转CSV工具