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';

إرسال تعليق