如何在node-mysql中使用“IN”

时间:2013-07-03 07:55:07

标签: node-mysql

我想这样做:

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)

我有什么想法可以让它发挥作用吗?

1 个答案:

答案 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);
});