MYSQL : How to drop database in mysql command line in ubuntu 18.04

follow this command

sudo mysql -u root -p

SHOW DATABASES;

#Copy Name of database#

DROP DATABASE IF EXISTS databasename;

DROP DATABASE databasename;

Comments

Popular posts from this blog

Install Xampp On Kubuntu 18.10 LTS