如何将此sql查询转换为Sequelize?
选择a.id,a.name,最大值(B.sentAt)作为来自站点的sentAt作为内部连接,监视数据信息作为www.example.com上的ba.id= b.站点ID组a.id,a.name
结果是这样的:
我尝试了以下代码,但它不运行:
static findStationInfo (){
return this.findAll({
attributes : ['id', 'name', [Sequelize.fn('max', Sequelize.col('sentAt')), 'sentAt']],
include: [{model: MonitoringDataInfo, attributes : [], required: true}],
group: ['Station.id', 'Station.name']
})
}
1条答案
按热度按时间cwtwac6a1#
我使用属性来解决它:原始:真