gpt4 book ai didi

mysql - Sequelize select * where attribute is NOT x

转载 作者:可可西里 更新时间:2023-11-01 06:41:45 28 4
gpt4 key购买 nike

看着docs您可以使用 model.findAll({where: {attribute: x}})。但是,我想选择所有不是 x 的属性。我正在研究这里的正则表达式,但这似乎不是最佳解决方案。

执行此操作的最佳方法是什么?

最佳答案

更新方法,用于现代 Sequelize:

model.findAll({
where: {
someAttribute: {
[sequelize.Op.not]: 'some value'
}
}
});

关于mysql - Sequelize select * where attribute is NOT x,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46137212/

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