Si eres nuevo en los mundos asincrónicos, deberías echar un vistazo al módulo 'async'.
A continuación, puede hacer algo como esto:
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.
})