elasticsearch bool联合查询的使用should、must、must_not、filter以及should与另外三个并列时无法生效问题

参考:https://blog.csdn.net/andy_5826_liu/article/details/103161654

 

我本意上想做到像这个sql一样

select * from table 

where

( dynamicType = '201' and viewTime = '2019-10-11' ) 

 and 

( uniqueKey = 'xxx'    or    uniqueKey = 'zzz' )

 

1、出现问题的写法,在bool下面有must和should同级的两个属性,像下面这样下就会导致should的筛选失效,只有must生效

{
	"query": {
		"bool": {
			"must": [{
				"term": {
					"dynamicType": "201"
				}
			}, {
				"term": {
					"viewTime": "2019-10-11"
				}
			}],

			"should": [{
				"term": {
					"uniqueKey": "xxx"
				}
			}, {
				"term": {
					"uniqueKey": "zzz"
				}
			}]
		}
	}
}

2、正确写法

也就是在must内再加一个bool查询,然后这个嵌套的bool查询中写一个should

关系的理解:

(1)首先,在must数组中的两个term(暂时称为term1和term2)和一个bool是and关系,

即(term1返回true) 且 (term2返回true) 且 (bool返回true时),这条数据才匹配。

(2)然后这个嵌套的bool下又有一个shoudd数组

所以这个bool是需要should返回true才为treu,

而should则需要数组中某一个条件匹配成功才返回true(或者关系)

所以下面这个最终组成sql的条件是

where

dynamicType = '201' 

and viewTime = '2019-10-11' 

and  ( uniqueKey = 'xxx'  or  uniqueKey = 'zzz' )

 

{
	"query": {
		"bool": {
			"must": [{
					"term": {
						"dynamicType": "201"
					}
				},
				{
					"term": {
						"viewTime": "2019-10-11"
					}
				},
				{
					"bool": {

						"should": [{
							"term": {
								"uniqueKey": "xxx"
							}
						}, {
							"term": {
								"uniqueKey": "zzz"
							}
						}]
					}
				}
			]

		}
	}
}

 

参考:

https://blog.csdn.net/andy_5826_liu/article/details/103161654

https://blog.csdn.net/zhnegyeshi/article/details/102584708

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值