作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如我有以下 Druid 查询:
"filter": {
"type": "and",
"fields": [
{
"type": "selector",
"dimension": "city",
"value": "landon"
},
{
"type": "selector",
"dimension": "name",
"value": "Tom"
}
]
}
现在我想添加一个 NOT 字段,我应该把它插入哪里?映射 SQL 类似:从用户中选择 *,其中 city='landon' 和 name="Tom"and title<>"teacher"。
最佳答案
我得到的答案如下:
"filter": {
"type": "and",
"fields": [
{
"type": "selector",
"dimension": "city",
"value": "landon"
},
{
"type": "selector",
"dimension": "name",
"value": "Tom"
},
{
"field": {
"type": "selector",
"dimension": "title",
"value": "teacher"
},
"type": "not"
}
]
}
关于druid - 如何添加多个德鲁伊过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51643984/
我是一名优秀的程序员,十分优秀!