SQL Delete and Drop table
Create Database
The CREATE DATABASE statement creates a new database. Many different options can be
supplied, such as the device on which to create the database and the size of the initial
database.
syntax:
CREATE DATABASE database_name;
Example:
CREATE DATABASE articles;
Drop Database
The DROP DATABASE statement completely deletes a database, including all data and the
database’s physical structure on disk.
syntax:
DROP DATABASE database_name;
Example:
DROP DATABASE articles;