...
Code Block |
---|
mysql> grant all on reg_db.* TO user@localhost identified by "password"; |
- user : The username for the user who needs access to the database
- password : The password for the user who needs access the database
...
...
Code Block |
---|
mysql> grant all on reg_db.* TO user@localhost identified by "password"; |
...