gpt4 book ai didi

javascript - 如何使用别名选择列

转载 作者:可可西里 更新时间:2023-11-01 02:29:54 26 4
gpt4 key购买 nike

如何执行这样的 sql 查询?

SELECT column_name AS alias_name FROM table_name;

示例:我希望将“first”列选为“firstname”

Table.findAll({
attributes: [id,"first"]
})
.then(function(posts) {
res.json(posts);
})

最佳答案

Table.findAll({
attributes: ['id', ['first', 'firstName']] //id, first AS firstName
})
.then(function(posts) {
res.json(posts);
});

关于javascript - 如何使用别名选择列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32649218/

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