Node.js MySQL Create Table 语句

创建表

要在 MySQL 中创建表,请使用 "CREATE TABLE" 语句。

确保在创建连接时定义了数据库的名称:

实例

创建一个名为 "customers" 的表:

var mysql = require('mysql');

var con = mysql.createConnection({
  host: "localhost",
  user: "yourusername",
  password: "yourpassword",
  database: "mydb"
});

con.connect(function(err) {
  if (err) throw err;
  console.log("Connected!");
  var sql = "CREATE TABLE customers (name VARCHAR(255), address VARCHAR(255))";
  con.query(sql, function (err, result) {
    if (err) throw err;
    console.log("Table created");
  });
});
运行实例 »

将上述代码保存在名为 "demo_create_table.js" 的文件中,然后运行该文件:

运行 "demo_create_table.js"

C:\Users\Your Name>node demo_create_table.js

返回结果:

Connected!
Table created


主键(Primary Key)

创建表时,还应该为每条记录创建一个具有唯一键的列。

这可以通过定义一列为 "INT AUTO_INCREMENT PRIMARY KEY" 来实现,该列将为每条记录插入一个唯一的数字。从 1 开始,每条记录增加 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;
  console.log("Connected!");
  var sql = "CREATE TABLE customers (id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255), address VARCHAR(255))";
  con.query(sql, function (err, result) {
    if (err) throw err;
    console.log("Table created");
  });
});
运行实例 »

如果表已经存在,请使用 ALTER TABLE 关键字:

实例

在现有表上创建主键:

var mysql = require('mysql');

var con = mysql.createConnection({
  host: "localhost",
  user: "yourusername",
  password: "yourpassword",
  database: "mydb"
});

con.connect(function(err) {
  if (err) throw err;
  console.log("Connected!");
  var sql = "ALTER TABLE customers ADD COLUMN id INT AUTO_INCREMENT PRIMARY KEY";
  con.query(sql, function (err, result) {
    if (err) throw err;
    console.log("Table altered");
  });
});
运行实例 »