Monday, October 29th - 2:40 AM
Hi,
You might want to try out the following syntax when you are in the MYSQL command line mode.
1. If you are sure that the database does not exist.
CREATE DATABASE your_database_name;
2. If you are NOT sure whether the database exist.
CREATE DATABASE IF NOT EXISTS your_database_name;