Home » Node.js MySQL Create Database

Node.js MySQL Create Database

by Online Tutorials Library

Node.js MySQL Create Database

CREATE DATABASE statement is used to create a database in MySQL.

Example

For creating a database named “tutoraspire”.

Create a js file named tutoraspire.js having the following data in DBexample folder.

Now open command terminal and run the following command:

Node.js create database 1

You can see the database is created.

Verification

To verify if the database is created or not, use the SHOW DATABASES command. Before this, go to initial path by using mysql-p command.

Node.js create database 2

You may also like