我想做这个:
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)
有什么想法可以让它发挥作用吗?