Database and the Table inside the database are initially define by means of the statement CREATE.
CREATE DATABASE is SQL command that use to create a database.
A database is a named allocation storage space that will contact tables, views, indexes, and other database objects.
Database design is starting from naming database.
Among commercial version of SQL, there's not a lot of variation when it come to CREATE DATABASE command.
SQL syntax will be like this:
CREATE DATABASE [DATABASE NAME]
EXAMPLE :
We want to create a database name INTRANET
SQL statement:
CREATE DATABASE INTRANET