How to create a MySQL database and user:
create database <db_name>;
create user ‘<user_name>’@'localhost’ identified by ‘<user_password>’;
grant all on <db_name>.* to <user_name>;
Jun 12
How to create a MySQL database and user:
create database <db_name>;
create user ‘<user_name>’@'localhost’ identified by ‘<user_password>’;
grant all on <db_name>.* to <user_name>;