📜  sequelize where more than - Javascript代码示例
📅  最后修改于: 2022-03-11 15:03:20.196000             🧑  作者: Mango
代码示例3
// second method
// selecting authorityId :12 or 13
model.findAll({
where: {
authorId: {
[Op.or]: [12, 13]
}
}
});