Create a database : Create Database : Database MySQL TUTORIALS


MySQL TUTORIALS » Database » Create Database »

 

Create a database


Syntax:

CREATE DATABASE <database>;
mysql>
mysql>
mysql> CREATE DATABASE myDatabase;
Query OK, row affected (0.03 sec)

mysql>
mysql> drop database myDatabase;
Query OK, rows affected (0.01 sec)

mysql>
Under Unix, database and table names are case sensitive.
Under Windows, this restriction does not apply
mysql>



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Database
» Create Database