sequelize 关联查询中,count另外个表中的某个字段该怎么做

2张表
select 
tb1.name as name,
tb1.id as id,
(select count(1) from tb2 where tb1.type = tb2.type) as count
from tb1

https://img1.mukewang.com/5b6fcba700010aca02610091.jpg

用sequelize的方法应该怎么去实现,得到这样的结果
是用include吗,还有where怎么写。


繁星点点滴滴
浏览 4001回答 2
2回答

阿晨1998

用include
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js