MySQL command help

Command to create mysql user ============================ CREATE USER 'username'@'localhost' IDENTIFIED by 'password'; Command to grant all privileges to a user to databases starting with any name ============================================================================= GRANT ALL PRIVILEGES ON database_.* TO 'username'@'localhost' IDENTIFIED BY 'password'; flush privileges; The...