First of all decide what you want the database, username, and password to be. Then create them:
CREATE DATABASE dbname;
CREATE USER username@localhost IDENTIFIED BY 'password';
GRANT ALL ON dbname.* TO username@localhost;
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --