To create a database in MySQL, use the "CREATE DATABASE" statement:
Create a database named "mydb":
let mysql = require('mysql');
let con = mysql.createConnection({
host: "localhost", user: "yourusername ", password: " yourpassword "
});
con.connect(function(err) {
if (err) throw err;
console.log("Connected!");
con.query("", function (err, result) {
if (err) throw err;
console.log("Database created");
});
});
Save the code above in a file called "demo_create_db.js" and run the file:
Run "demo_create_db.js"C:\Users\
>node demo_create_db.js Which will give you this result: Connected!