Lorem ipsum dolor sit amet, consectetur adipiscing elit. Test link

Search Suggest

Create user in MySQL with full database previleges

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

Đăng nhận xét