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