hallo i would like to know how can i safely remove a database ? what command should i use? thank you
The MySQL official docs http://dev.mysql.com/doc/refman/5.5/en/ specifically at http://dev.mysql.com/doc/refman/5.5/en/drop-database.html Code: MariaDB [(none)]> DROP DATABASE databasename; or Code: mysqladmin drop databasename i.e. Code: mysqladmin drop databasename Dropping the database is potentially a very bad thing to do. Any data stored in the database will be destroyed. Do you really want to drop the 'databasename' database [y/N]