Create a new user with full privileges : Add User « User Permission « SQL / MySQL
- SQL / MySQL
- User Permission
- Add User
Create a new user with full privileges
GRANT ALL PRIVILEGES ON *.* TO monty@localhost
IDENTIFIED BY "some_pass" WITH GRANT OPTION;
Related examples in the same category