I have seen in several tutorial that the "DROP" command will drop the database, but it is not deleted. Why is my database not deleted ?
mysql> DROP DATABASE www_example_com;
Query OK, 645 rows affected (3.36 sec)
mysql> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
| www_example_com |
+--------------------+
5 rows in set (0.00 sec)
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.01 sec)
mysql> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
| www_example_com |
+--------------------+
5 rows in set (0.00 sec)