关于Sequelize的分组查询与分组统计

根据groupId进行分组分组

const  datas = await ctx.model.Data.findAll({
	  where: { xxx },
      group: 'groupId',
});

根据gourpId进行统计

const  datas = await ctx.model.Data.count({
	  where: { xxx },
	  attributes: ['groupId'],
      group: 'groupId',
});

你可能感兴趣的:(eggjs,nodejs,sequelize,sequelize,node,egg)