gpt4 book ai didi

sequelize.js - 如何使用一个查询在两列中进行搜索

转载 作者:行者123 更新时间:2023-12-03 22:37:16 25 4
gpt4 key购买 nike

如果一对一不为空或不为零返回值,则有必要查看两列。如果 mURL === "string"和 aURL === NULL 返回值

{

logging: console.log,
attributes: ['firstName','lastName','email','mURL','aURL'],
where: {
mURL: {
$not: null
},
aURL: {
$not: null
}
},
include: [
{ all: true, nested: true }
]

}

最佳答案

尝试以下 -

{
logging: console.log,
attributes: ['firstName','lastName','email','mURL','aURL'],
where: {
$or: {
mURL: {
$not: null
},
aURL: {
$not: null
}
}
},
include: [
{ all: true, nested: true }
]

}

可以使用 $ 和 $ 或 运算符。

或者你可以使用 -
where: Sequelize.literal(`(mURL IS NOT NULL) OR (aURL IS NOT NULL)`)

关于sequelize.js - 如何使用一个查询在两列中进行搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57678079/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com