change permission to database mysql

Solutions on MaxInterview for change permission to database mysql by the best coders in the world

showing results for - "change permission to database mysql"
Giovanni
14 Aug 2016
1UPDATE mysql.user SET Host='%' WHERE Host='localhost' AND User='username';
2UPDATE mysql.db SET Host='%' WHERE Host='localhost' AND User='username';