https://github.com/mysqljs/mysql # get-the-id-of-an-insert-row mô tả giải pháp một cách hoàn hảo:
connection.query('INSERT INTO posts SET ?', {title: 'test'}, function(err, result, fields) {
if (err) throw err;
console.log(result.insertId);
});