how to check if user exists in mysql in nodejs code example
Example: node js check if a user exists in mysql
connectDB.query("SELECT ACCOUNT_ID FROM registration WHERE ACCOUNT_ID = '"+ userAccnt +"'", function(err, result, field){
if(result.length === 0){
//new user logic
}else{
//existing user, redirect to another page
}
}