Create Database
First of all, we need to create a database in which we will run our queries.Syntax:
CREATE DATABASE database_name;Suppose we want to create a database, named company wherein we will have different tables which will contain all the information about the employees, staff etc.
Example:
CREATE DATABASE company;The above query will create a database named company which can hold all the relating tables.
