SQL Create Database - How to Create a Database in SQL



Creating a new Database in SQL

    The CREATE DATABASE statement is used to create a new SQL database.

Syntax

      CREATE DATABASE databasename;

CREATE DATABASE Example

  • The following SQL statement creates a database called "wikitechydatabase":
 CREATE DATABASE wikitechydatabase;

Output

create-database-1

Related Searches to SQL Create Database - How to Create a Database in SQL