このような SQL クエリを実行するにはどうすればよいですか?
SELECT column_name AS alias_name FROM table_name;
例: 列「first」を「firstname」として選択したい
Table.findAll({
attributes: [id,"first"]
})
.then(function(posts) {
res.json(posts);
})
ベストアンサー1
Table.findAll({
attributes: ['id', ['first', 'firstName']] //id, first AS firstName
})
.then(function(posts) {
res.json(posts);
});