操作员不正常工作之间的续集

时间:2017-06-27 21:40:59

标签: mysql node.js sequelize.js

我正在尝试进行查询以获取id 1到4之间的所有行。 我正在使用mySQL和sequelize。 查询

`

main.test = function(req,res,next)
{
    var param = req.params;
    model.Time.find({
          where:{
            id:{
                $between:[1,4]
            }
         },limit: 10
        }).then(function (time) {

                console.log("Time"+time);
    });

    }

`

并在执行enter image description here

时获得结果

需要解决方法吗?

0 个答案:

没有答案