Create Database in MYSQL by R4R Team

Database:
A database is an organized collection of data, generally stored and accessed electronically from a computer system.
Where databases are more complex they are often developed using formal design and modeling techniques.

How we create a database in Mysql?

Syntax:
CREATE DATABASE DATABASE_NAME
where,
database_name is case_sensitive

Lets Create the Different Databases:

CREATE DATABASE employee;
CREATE DATABASE student;
CREATE DATABASE library;
CREATE DATABASE shopping;


You can also check this already created Database or All Database list by:

SHOW DATABASE


Database
employee
student
library
shopping


-In this program , we show the output which display the list of the database.


Leave a Comment: