标签: node.js orm sequelize.js
我有一个名为attribute的表,我需要在多个表中根据SQL IN Clause进行选择,如何使用Sequelize in Clause实现它。
我的查询是:
select * from attr where (tid, pid) in ((1, 3440), (344, 3441))
但是在Sequelize中只有1列支持。