处理node.js中Query的偏移量或限制

时间:2016-06-28 21:16:12

标签: mysql node.js

我正在尝试从我的数据库中获取多行,但我找不到查询的问题,这是代码:

var top = offset + 5; // 5 is the offset or step of the next limit

connection.query("SELECT name FROM restaurants WHERE active = 1 LIMIT ?, ?",[offset, top], function(err, results) {
...
}

提前感谢您的帮助

1 个答案:

答案 0 :(得分:0)

我尝试将查询打印到console.log然后在MySQL中运行。

我相信你的语法不正确。而不是SELECT (*)你会想要丢掉那些parens而不是SELECT * ......