Reputation: 1707
What privileges does a newly created user have after running:
CREATE USER 'jeffrey'@'localhost' IDENTIFIED BY 'mypass';
Upvotes: 3
Views: 3877
Reputation: 3033
creates a new row in the mysql.user table and assigns the account no privileges http://dev.mysql.com/doc/refman/5.1/en/create-user.html
Upvotes: 4