gpt4 book ai didi

node.js - 如何在 Sequelize 中使用 Case Condition?

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

如何将 case 语句 SQL 查询转换为 Sequelize。我试过了,但对我不起作用

在这里导入我的模型

const Proj = require('/models/Project');

Proj.findOne({
attributes:[
'Proj',
[Sequelize.literal(`CASE Type WHEN 'Project_Name' THEN Project_Name : ${req.body.Project_Name}`),
'Project'
],
...
]);

Now error:

"error ReferenceError: models is not defined"


最佳答案

导入模型如下:

const Proj = sequelize.import(__dirname + '/models/Project');

希望这有帮助。

关于node.js - 如何在 Sequelize 中使用 Case Condition?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56888766/

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