我正在尝试模拟IN运算符的工作。我正在尝试但不工作的查询是: 以下查询给出了0条记录。
{
"query" : {
"bool" : {
"filter" : {
"terms" : {
"ch" : ["X", "Y", "Z"]
}
}}},
"_source": {
"includes": [
"ch",
"orgnm"
],
"excludes": []
}
}
所以,基本上我正在尝试
select ch, orgnm from index_name where ch in ('X', Y', 'Z');