Node.js MySQL Create DatabaseCREATE DATABASE statement is used to create a database in MySQL. Example For creating a database named "javatpoint". Create a js file named javatpoint.js having the following data in DBexample folder. Now open command terminal and run the following command: You can see the database is created. VerificationTo verify if the database is created or not, use the SHOW DATABASES command. Before this, go to initial path by using mysql-p command. Next TopicNode.js MySQL Create Table |