Saturday, December 15, 2012

Adding user in MySQL and give grant


CREATE USER 'jeffrey'@'localhost' IDENTIFIED BY 'mypass';
GRANT ALL ON db1.* TO 'jeffrey'@'localhost';

No comments: