Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Nodejs mehrere SQL-Abfrageschleifen

Wenn Sie mit asynchronen Welten noch nicht vertraut sind, sollten Sie einen Blick auf das Modul 'async' werfen.

Sie können dann so etwas tun:

async.forEachOfSeries(ids, function(id,index,callback){
     var q = "UPDATE mytable SET sequence="+index+" where id="+id+"; ";

      this.connection.query(q, function(err, result) {         
         callback();
     });


},function done(){
    // whatever you want to do onces all the individual updates have been executed.
})