Create Database In Mysql

SUMMARY

Create Database in MySql | In this tutorial we learn how to create database in MySQL  .

Create Database In MySql

To create  database in mysql  we require special privileged.To create mysql database we are using root user and login the mysql server and syntax is given below.

create database <database name>;

MySQL Select Database

After connected the mysql server we need to select database with which we are working among all databases on the mysql server. To select the database we execute “use” command .
Among many databases to work with particular database we need to use "use" command.

List MySQL Database

After creating database we can list the databases using below command.
show databases;
How to create database using phpmyadmin and mysql workbench please visit : techrideradmin.blogspot.com

CONCLUSION 

In this tutorial we have  learned how to create database in MySQL.