Node.js MySQL更新记录

UPDATE命令用于更新表中的记录。

例子

更新ID为1的”员工”表中的城市。

在DBexample文件夹中创建一个名为” update”的js文件, 并将以下数据放入其中:

var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost", user: "root", password: "12345", database: "srcmini"
});
con.connect(function(err) {
if (err) throw err;
var sql = "UPDATE employees SET city = 'Delhi' WHERE city = 'Allahabad'";
con.query(sql, function (err, result) {
if (err) throw err;
console.log(result.affectedRows + " record(s) updated");
});
});

现在打开命令终端并运行以下命令:

Node update.js

它将把编号为1的城市更改为在阿拉哈巴德之前的德里。

Node.js更新记录1

你可以在新表中检查更新的记录:

Node.js更新记录2

在旧餐桌城市” Ajeet Kumar”是阿拉哈巴德。

Node.js更新记录3

来源:

https://www.srcmini02.com/27940.html

微信公众号
手机浏览(小程序)

Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_38353.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
0
分享到:
没有账号? 忘记密码?