在mysql sequelize中使用相同的字段和不同的值查找所有数据

时间:2019-02-12 05:00:25

标签: javascript arrays json sequelize.js

我需要使用mysql上的相同字段查找数据, 但值不同。 但我回想起空值。

我尝试了$ and条件来查找续集上的数据。 但没有得到响应。

 exports.multibranchdata = (req, res) => {

 const wherequery = { 
             $and: [{ id: { eq: 1 } },
                    { id: { eq: 2 } }
                   ] };
 branch.findAll(wherequery)

.then(data => res.status(200).send(data))

.catch(Sequelize.ValidationError, err => 
 res.status(422).send(err.errors[0].message))

.catch(err => res.status(400).send(err.message));
 };

1 个答案:

答案 0 :(得分:1)

尝试或查询:-

 const wherequery = { 
             $or: [{ id: { eq: 1 } },
                    { id: { eq: 2 } }
                   ] };