您将查询作为字符串发送,并在响应中收到包含答案的回调。回调为您提供error,rows和字段数组。每行包含返回表的所有列。这是以下说明的代码段。
connection.query('SELECT name,email from users', function(err, rows, fields) { if (err) throw err; console.log('There are:', rows.length,' users'); console.log('First user name is:',rows[0].name) });