Creating a new MySQL database
A new MySQL database can be created using CREATE SCHEMA SQL statement. Please be aware that the newly created database will have default user permissions, and in addition to database a user for that database needs to be created and proper database permissions need to be assigned to that user.
MySQL is not case sensitive, so databases can be created with any capitalization of letters, however it is best practice use lower case characters in database names.
Comments
Post a Comment