Grant Privileges For User
Tue Feb 16 2021 15:56:44 GMT+0000 (UTC)
Saved by
@nhatphan108
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
GRANT ALL PRIVILEGES ON database_name . * TO 'newuser'@'localhost';
flush privileges
content_copyCOPY
Comments