hello how can i please delete MySQL database through SSH (not MySQL, only a certain database inside of it with all it's tables)? thank you.
Login to mysql on shell and execute the following command to delete a database and all tables under it. DROP database_name; Code (markup):
You can't unless you open a mysql console. You can stop the database and then delete the database file in the filesystem but this can cause errors when mysql starts up and then can't find the database.