How to create a Database using MySQL command line window

In this post, I teach u how to create a database in MySQL command line Window. I know there are many websites and blogs where you can learn this. So what is special in mine post?? The answer is that on all the other websites and blogs u can’t understand properly the whole MySQL without help of someone who knows MySQL programming.
I am writing a whole series of MySQL post so that you can easily understand the MySQL programming.
The command for creating a database in MySQL is – ” create database [ database_name] “
Ex – create database myDb ;
This will create a database name “myDb”.
In the next post, I teach you how to connect MySQL database with your java application while working in netbeans IDE.

Leave a Comment

Your email address will not be published. Required fields are marked *