SQL CREATE Database

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

Let's see the syntax of SQL CREATE DATABASE:

If you want to add tables in that database, you can use CREATE TABLE statement.

Create Database in MySQL

In MySQL, same command is used to create a database.

Create Database in Oracle

You don't need to create database in Oracle. In Oracle database, you can create tables directly.


You can also rename, drop and select database that is covered in next pages.

We should always remember that database name should be unique in the RDBMS.

Next TopicSql DROP Database




Contact US

Email:[email protected]

SQL CREATE Database
10/30