Information
The default MySQL installation does not contain any example or test databases. However, it is a good idea to review for common example databases and ensure they have been removed from production systems.
Rationale:
Dropping example databases will reduce the attack surface of the MySQL server.
Solution
Execute the following SQL statement to drop an example database:
DROP DATABASE <database name>;
Default Value:
By default, MySQL 5.6 does not contain any example or test databases.