4
Well, I wanted to know, how can I take this result, and turn into variable and be able to use within functions in the script, example take this Name Warrior and use as if it were a variable, like:
con.query(
  'SELECT * FROM servers WHERE id = ?', [userLandVariable],
  function(err, rows){
    if(err) throw err;
    console.log(rows);
  }            
);
has how I do var username = mysql.Name;?

Got it, thanks for the help ;D
– Wladi Veras