SQL Basic
SQL Advanced
SQL Functions
| SQL Create DB |
The CREATE DATABASE StatementThe CREATE DATABASE statement is used to create a database. SQL CREATE DATABASE Syntax
CREATE DATABASE ExampleNow we want to create a database called "my_db". We use the following CREATE DATABASE statement:
Database tables can be added with the CREATE TABLE statement. |
SQL Create DB