I must be missing something, how do I do it? I have loads of stuff I don't use anymore
The Contractor
9:14 pm on Jul 7, 2005 (gmt 0)
drop the tables
superbird
9:26 pm on Jul 7, 2005 (gmt 0)
Thanks! Do I have to do that where I want to get rid of the whole db as well as just some of the tables?
coopster
9:29 pm on Jul 7, 2005 (gmt 0)
DROP TABLE removes one or more tables. DROP DATABASE drops all tables in the database and deletes the database. But, as the MySQL manual warns "Be very careful with this statement!" because you are going to lose everything in the database if you do!
You probably just want to DROP TABLE by the looks of your request.
physics
9:33 pm on Jul 7, 2005 (gmt 0)
In phpMyAdmin it's pretty easy to do things like this. I.e. to drop a table select the database in the drop-down menu on the left. Then click on the table name you want to drop on the left. Then on the top right one of the tabs is "Drop".