tags:

views:

182

answers:

2

You may notice from my last question that a problem caused some more problems here.

My database is now unusable partly due to my interest to break things and my inability to look at error messages. I know that I should not reuse primary keys, but I would like to use them again after the removal of the database that I deteriorated. So

How can you correctly remove MySQL database?

A: 

Login to mysql and run "drop database".

tomtom
+7  A: 

mysql> drop database <db_name>

rnicholson