怎么 查两个字段不一致
匿名 | 发布于2020年11月05日 | 阅读数:2430
怎么 查两个字段不一致,用resful的方式例如:select * from tbl where A!=B
怎么 查两个字段不一致,用resful的方式例如:select * from tbl where A!=B
怎么 查两个字段不一致,用resful的方式例如:select * from tbl where A!=B
怎么 查两个字段不一致,用resful的方式例如:select * from tbl where A!=B
怎么 查两个字段不一致,用resful的方式例如:select * from tbl where A!=B
怎么 查两个字段不一致,用resful的方式例如:select * from tbl where A!=B
怎么 查两个字段不一致,用resful的方式例如:select * from tbl where A!=B
3 个回复
guoyanbiao520
赞同来自:
Charele - Cisco4321
赞同来自:
"query": {
"script" : {
"script" : {
"source": "doc['name1'].value != doc['name2'].value"
}
}
}
}
liuxg - Elastic
赞同来自:
GET twitter/_search
{
"query": {
"bool": {
"must_not": [
{
"match": {
"city": "北京"
}
}
]
}
}
}