🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

Creating an SQL Database

Reading time 1 min
Published Aug 9, 2017
Updated Oct 9, 2019

TL;DR – The SQL CREATE DATABASE command is used to produce a new database.

Syntax of SQL CREATE DATABASE

Example
CREATE DATABASE dbname;

Producing a database called testingDB

Example
CREATE DATABASE testingDB;