Creating a database does not select it for use : Create Database « Database « MySQL Tutorial






mysql>
mysql>
mysql> CREATE DATABASE myDatabase;
Query OK, 1 row affected (0.02 sec)

mysql> USE myDatabase;          -- Select it manually
Database changed
mysql> drop database myDatabase;
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql>








3.1.Create Database
3.1.1.Create a database
3.1.2.Creating a database does not select it for use
3.1.3.Database, Table, and Column Definition with Character and collate