/ Published in: MySQL
Create a new database and its respective user with all privileges
Expand |
Embed | Plain Text
CREATE DATABASE <database_name> GRANT all on <database_name>.* to <user_name>@localhost identified BY '<user_password>';
You need to login to post a comment.
