Some mysql grant queries Granting permission for a particular DB only mysql> grant all privileges on databasename.* to ‘username’@’localhost’; mysql> flush privileges;
Granting Permission for all the DB mysql> grant all privileges on *.* to ‘username’@’localhost’;
Granting Permission from a particular IP # grant all privileges on *.* to ‘username’@’192.168.0.20’;
# […]
Recent Comments