Data Definition Language (DDL) on Database



to create a database, create commands that will be used is sql commands Data Definition Language (DDL)
to create an object, structure create command syntax to create a database that is:
CREATE DATABASE [Database Name]

example:
CREATE DATABASE db_Shop

in addition to create the database, Data Definition Language (DDL) can alter the structure of the database by using the command
alter, alter structure command syntax to change the database are:
ALTER DATABASE [Database Name] SET [Parameter]

example
ALTER DATABASE SET db_Shop MULTI_USER

to delete a database used also Data Definition Language (DDL) by using the command
drop, drop structure command syntax to delete a database that is:
DROP DATABASE [Database Name]

example:
Drop database db_Shop

Comments