Use MySQL to build a database:
mysql -u root -p
then follow the prompt
create database wordpress;
grant all privileges on wordpress.* to “username”@localhost identified by “password”;
flush privileges;
quit;
Want to delete an existing database:
drop database databasename;