Search code examples
node.jssqlitesql-in

Node.js sqlite3 IN operator


So I am currently trying to make a query in Node.js:

// friends is an array object
db.all('SELECT email ' +
       'FROM users' +
       'WHERE email in ?', friends, function(err, rows) {
           if (!err) {

I know that you can pass in an array of parameters for every '?' symbol, but is it possible to use the IN operator in this case? If not, should I do string concatenation or prepared statements?


Solution

  • db.all('SELECT email ' +
           'FROM users' +
           'WHERE email in ( ' + friends.map(function(){ return '?' }).join(',') + ' )', 
           friends, 
           function(err, rows) {
               if (!err) {