From http://www.w3schools.com (Copyright Refsnes Data)
| « Previous | Next Chapter » |
The CREATE DATABASE statement is used to create a database.
| CREATE DATABASE database_name |
Now we want to create a database called "my_db".
We use the following CREATE DATABASE statement:
| CREATE DATABASE my_db |
Database tables can be added with the CREATE TABLE statement.
| « Previous | Next Chapter » |
From http://www.w3schools.com (Copyright Refsnes Data)