gpt4 book ai didi

node.js - 如何在 sequelize 中选择一个值作为列

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

如何在 sequelize 中执行诸如这个 SELECT 'OLD' AS CUSTOM_COLUMN FROM TABLE 之类的 sql 查询?

最佳答案

您可以为此使用 sequelize.literal

const response = await YourModel.findAll({
where: {
...attributes
},
attributes: [
'column_name_on_model',
[sequelize.literal("'OLD'"), 'CUSTOM_COLUMN'], //custom column name
],
raw: true
});

关于node.js - 如何在 sequelize 中选择一个值作为列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41749528/

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