| MySQL Create Database 
 Node.js MySQL Create DatabaseHere we will create a Database in Node.js and this database in MySQL
 
 
 Creating a DatabaseHere to create a database in MySQL we use syntax "CREATE DATABASE" statment and below is the full code:-
 
 
 ExampleCreate 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
 
 |