gpt4 book ai didi

mysql - 如何在 node.js 的 typescript-sequelize 中使用 'or' 选项?

转载 作者:太空宇宙 更新时间:2023-11-03 10:34:04 26 4
gpt4 key购买 nike

我使用 typescript-sequelize

如何使用findOne({where: {something or something2}});我读了文档,我无法理解帮帮我

最佳答案

首先你必须导入Op:

import {Op} from "sequelize";

然后像这样创建你的 where 子句:

findOne({where: {
value_to_find: {
[Op.or]: {
[Op.eq]: something,
[Op.eq]: something2
}
}
}})

关于mysql - 如何在 node.js 的 typescript-sequelize 中使用 'or' 选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52070388/

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