In phpmyadmin, we can drop a specific database from operation tab and by hitting “DROP THE DATABASE (DROP)”. But I need to drop a specific database using command prompt or terminal.
Question posted in PhpMyAdmin
The official documentation can be found here.
The official documentation can be found here.
2
Answers
You can try this
DROP DATABASE
database
;https://dev.mysql.com/doc/refman/5.7/en/drop-database.html
Use mysqladmin like
In this case User: root with password: yourpassword will delete database database_name
You will get a warning and have to verify it