AdBlock Detected!
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.
SQL CREATE DATABASE |
|
SQL > Data Definition Language (DDL) >
Create Database Statement
A database is a collection of organized data. A database is not the same as the Relational Database Management System (RDBMS). An RDBMS can have one or multiple databases, whereas a database can only belong to one RDBMS. On the other hand, a database can contain one or more tables, whereas a table can only belong to a database. The SQL CREATE DATABASE command creates a new database within your RDBMS. A database is a container for tables and other objects, and an RDBMS can host multiple databases.
Therefore, the first step to use RDBMS to store data is to create a database. SQL offers the CREATE DATABASE command, and its syntax is, If we want to create a database called "HOLIDAYS", we would type in, Frequently Asked Questions
|
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.