查询没有参数的连接对象

你将查询作为字符串发送,并在响应回调中收到答案。回调给你 errorrows 和字段数组。每行包含返回表的所有列。以下是针对以下说明的摘录。

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)
});