I want to run sync query in nodejs like this...
for (var i in data){
conn.query("Select 1 from user where userid="+data[i].id,function(err,row){
Rows.push(row);
});
}
console.log(Rows);
In this code block my rows all time going to null... I want to run sync query