我想查询类似的跟随SQL:
select * from talbe where id=cityid
谁知道如何在es?
中实施感谢您的回答!
答案 0 :(得分:0)
您可以使用script
filter这样执行此操作:
POST /table/_search
{
"query": {
"bool": {
"filter": {
"script": {
"script": "doc.id.value == doc.cityid.value"
}
}
}
}
}