首页 > 数据库 > mysql教程 > 使用 NodeJS 删除 MySQL 表

使用 NodeJS 删除 MySQL 表

PHPz
发布: 2023-09-05 14:09:06
转载
1247 人浏览过

使用 NodeJS 删除 MySQL 表

您可以使用 Node.js 中的“DROP TABLE”语句从 MySql 数据库中删除现有表。有时,我们需要删除整个表,尽管在企业中总是建议将不使用的表归档而不是删除它们。

在删除表时,我们有两种情况 - p>

  • 如果表存在则删除,否则抛出错误

  • 无论表存在与否都删除。

我们将在这里讨论这两种情况。

在继续之前,请检查以下步骤是否已执行 -

  • mkdir mysql-test

  • cd mysql-test

  • npm init -y

  • npm install mysql

以上步骤是在项目文件夹中安装Node-mysql依赖。 p>

删除表

  • 删除表需要先创建app.js文件。

  • 现在将以下代码复制粘贴到 app.js 文件中

  • 使用以下命令运行代码

  • ul>
    >> node app.js
    登录后复制
    登录后复制

    示例 1

    var mysql = require('mysql');
       var con = mysql.createConnection({
          host: "localhost",
          user: "yourusername",
          password: "yourpassword",
          database: "mydb"
       });
    
    con.connect(function(err) {
       if (err) throw err;
       //Delete the "customers" table:
       var sql = "DROP TABLE customers";
       con.query(sql, function (err, result) {
          if (err) throw err;
          console.log("Table deleted");
          console.log(result);
       });
    });
    登录后复制

    上面的代码片段将引发错误,因为我们没有名为“customers”的表。我们有一个名为 - Students

    输出

    的表
    Error: ER_BAD_TABLE_ERROR: Unknown table 'bo.customers'
    登录后复制

    示例 2

    var mysql = require('mysql');
    var con = mysql.createConnection({
       host: "localhost",
       user: "yourusername",
       password: "yourpassword",
       database: "mydb"
    });
    
    con.connect(function(err) {
       if (err) throw err;
       //Delete the "students" table:
       var sql = "DROP TABLE students";
       con.query(sql, function (err, result) {
          if (err) throw err;
          console.log("Table deleted");
          console.log(result);
       });
    });
    登录后复制

    输出

    由于表存在,我们将得到以下输出。

    Table deleted
    OkPacket {
       fieldCount: 0,
       affectedRows: 0,
       insertId: 0,
       serverStatus: 2,
       warningCount: 0,    // If table does exist, then the count = 0
       message: '',
       protocol41: true,
       changedRows: 0
    }
    登录后复制

    如果存在则删除表

    那么,我们如何克服上述情况。好吧,在上面的例子中我们可以使用“If Exists”子句。这只会从数据库中删除表(如果存在),否则不会抛出错误,但会给出警告计数。

    • 复制粘贴以下内容app.js 文件中的代码

    • 使用以下命令运行代码

    >> node app.js
    登录后复制
    登录后复制

    示例

    var mysql = require('mysql');
    var con = mysql.createConnection({
       host: "localhost",
       user: "yourusername",
       password: "yourpassword",
       database: "mydb"
    });
    
    con.connect(function(err) {
       if (err) throw err;
       //Delete the "customers" table:
       var sql = "DROP TABLE IF EXISTS customers";
       con.query(sql, function (err, result) {
          if (err) throw err;
          console.log("Table deleted");
          console.log(result);
       });
    });
    登录后复制

    输出

    Table deleted
    OkPacket {
       fieldCount: 0,
       affectedRows: 0,
       insertId: 0,
       serverStatus: 2,
       warningCount: 1, // If table does not exist, then the count > 0
       message: '',
       protocol41: true,
       changedRows: 0
    }
    登录后复制

以上是使用 NodeJS 删除 MySQL 表的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板