我正在尝试从我的数据库中获取多行,但我找不到查询的问题,这是代码:
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) {
...
}
提前感谢您的帮助
答案 0 :(得分:0)
我尝试将查询打印到console.log
然后在MySQL中运行。
我相信你的语法不正确。而不是SELECT (*)
你会想要丢掉那些parens而不是SELECT *
......