Create user in MySQL with DB full right
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON DBName.* TO 'username'@'localhost';
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON DBName.* TO 'username'@'localhost';
0 comments:
Post a Comment