我想这样做:
var ids = '1,2,3';
connection.query('SELECT * FROM table WHERE id IN (?)', ids, function(err, rows, fields) {
if (err) throw err;
console.log('The solution is: ', rows[0].id);
});
不幸的是,它没有给出正确的结果。
通过node-mysql进行跟踪时,我发现该查询被解释为:
SELECT * FROM table WHERE id IN ('1,2,3')
而不是:
SELECT * FROM table WHERE id IN (1,2,3)
我有什么想法可以让它发挥作用吗?
答案 0 :(得分:1)
在发布问题几秒钟后,我已经明白了。
var ids = [1,2,3];
connection.query('SELECT * FROM table WHERE id IN (?)', ids, function(err, rows, fields) {
if (err) throw err;
console.log('The solution is: ', rows[0].id);
});