Error when using SQL with javascript

0

I would like to know what is wrong with these lines, especially in the query, since it is not working:

pool.query('SELECT * FROM 'info' WHERE 'id' = 1', function(err, row1) {
    var jogo = row1[0].jogo;
    var numerojogadores = row1[0].numerojogadores;
    // Se o numero de jogadores for 2 ou mais começa...
    if (numerojogadores > 1) {
        // Inicio do Contador
        socket.broadcast.emit('count', count);
        count--;
        console.log(count);
        // Fim do Contador
    }
    if (count === 0) {
        var novojogo = "jogo2";
        pool.query('UPDATE info SET jogo = novojogo WHERE id = 1', function(err) {
            console.log(err);
            count = 60;
        });
    }
});
    
asked by anonymous 27.03.2017 / 00:20

0 answers