Friday, May 17, 2013

Mysql - create user with grant options




CREATE USER 'myuser'@'localhost' IDENTIFIED BY 'mypass';
 
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' WITH GRANT OPTION;

No comments:

Post a Comment