conn.query('SELECT count(*) from pet',function(err,rows,fields){ if (err) throw err;
console.log(rows[0]);
});
获取到的数据
尝试获取其中的数字,发现不行
茅侃侃
浏览 1971回答 1
1回答
慕桂英4014372
conn.query('SELECT count(*) AS count from pet',function(err,rows,fields){ if (err) throw err; console.log(rows[0].count);});//说明:起个别名试试看。