How do I delete a MySQL DB table?
You can delete tables in the DB through the two methods below.
1. Use phpMyAdmin
- Connect to “domain/_hostingkr/dbadmin” based on the domain address of the hosting
- After entering the DB ID and password, delete the table you want to delete.
2. Using SSH
- Connect to MySQL after SSH connection
- mysql > use DB name;
- mysql > drop table table name;