MySQL Create Database
Node.js MySQL Create Database
Here we will create a Database in Node.js and this database in MySQL
Creating a Database
Here to create a database in MySQL we use syntax "CREATE DATABASE" statment and below is the full code:-
Example
Create a database names "myTestdb":-
We save the code and name the file as "demoCreateDBMySQL.js" and run the file by below code
node demoCreateDBMySQL.js
And once we run above code we will get the below output:-
Connected!
Database created
|