gpt4 book ai didi

node.js - 如何使用 Sequelize 查询 WHERE "NOT NULL"AND "NOT EQUAL TO [STRING]"?

转载 作者:行者123 更新时间:2023-12-03 22:29:59 33 4
gpt4 key购买 nike

我需要获取属性“type1”、“type2”等“不等于‘null’”和“不等于字符串‘no_issue’”的数据。我尝试了几种不同的方法但没有运气,这就是我目前无法使用的方法:

  [Op.and]: [
{ type1: { [Op.not]: null }},
{ type1: { [Op.ne]: 'no_issue' }},
{ next_item: 'next' }
],
[Op.and]: [
{ type2: { [Op.not]: null }},
{ type2: { [Op.ne]: 'no_issue' }},
{ next_item: 'next' }
],
[Op.and]: [
{ type3: { [Op.not]: null }},
{ type3: { [Op.ne]: 'no_issue' }},
{ next_item: 'next' }
],
[Op.and]: [
{ type4: { [Op.not]: null }},
{ type4: { [Op.ne]: 'no_issue' }},
{ next_item: 'next' }
],
[Op.and]: [
{ type5: { [Op.not]: null }},
{ type5: { [Op.ne]: 'no_issue' }},
{ next_item: 'next' }
]
}
这看起来是正确的,但我显然错过了一些东西。提前致谢!

最佳答案

Op.and 应该是一个对象数组

      [Op.and]: [
{ type1: { [Op.not]: null }},
{ type1: { [Op.ne]: 'no_issue' }}
],...

关于node.js - 如何使用 Sequelize 查询 WHERE "NOT NULL"AND "NOT EQUAL TO [STRING]"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67909955/

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